summaryrefslogtreecommitdiffstats
path: root/bin/check-syntax
diff options
context:
space:
mode:
authorBrian May <brian@linuxpenguins.xyz>2018-06-18 17:11:31 +1000
committerBrian May <brian@linuxpenguins.xyz>2018-07-13 15:15:20 +1000
commit8035da4845d2be4cb7d2f0a1371cd6f30e7b3bdd (patch)
tree0ab229bc7125473fed55df05811126c5ed55abaa /bin/check-syntax
parent1dd3d6336dfc2c0914660020f4f0f8a2ed43b633 (diff)
Update python exception syntax for Python 3.6 compatibility
Diffstat (limited to 'bin/check-syntax')
-rwxr-xr-xbin/check-syntax4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/check-syntax b/bin/check-syntax
index 115636f81f..adbe36ccd4 100755
--- a/bin/check-syntax
+++ b/bin/check-syntax
@@ -14,7 +14,7 @@ def setup_paths():
return path
idx = string.rfind(path, '/')
if idx == -1:
- raise ImportError, "could not setup paths"
+ raise ImportError("could not setup paths")
path = path[0:idx]
root_path = setup_paths()
@@ -38,7 +38,7 @@ def do_parse(f):
% r.name)
errors = True
names[n] = r.name
- except debian_support.ParseError, e:
+ except debian_support.ParseError as e:
e.printOut(sys.stderr)
errors = True
if errors:

© 2014-2024 Faster IT GmbH | imprint | privacy policy