A couple of mostly automated style fixes.
This patchset: - turns exceptions from "except A, B:" style to "except A as B:". - turns print statements into function calls
Both of these are required if we want to be compatible with python3 in the future, but are quite small, incremental fixes.
Both of these changes are compatible with Python 2.6+.
+1 LGTM (ow, my eyes)
Commit d6f97ff0 fixes this pull-request
Pull-Request has been merged by puiterwijk@redhat.com
A couple of mostly automated style fixes.
This patchset:
- turns exceptions from "except A, B:" style to "except A as B:".
- turns print statements into function calls
Both of these are required if we want to be compatible with python3 in the future, but are quite small, incremental fixes.