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
commitcc04ebb4f6ebbf80080b7990d710a55fd55a19a2 (patch)
treeea5ffabe533be6124b9c30bc82af3e23d08f10dc /bin/check-syntax
parent9889b3ebf70085d28f84371a931adcced2ff19fd (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