summaryrefslogtreecommitdiffstats
path: root/make/df-verify.py
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2019-02-25 07:03:28 -0500
committerBradley Sepos <[email protected]>2019-02-25 08:47:38 -0500
commit5bff83c1da2d99da99fab70cb8b9ae13717a4323 (patch)
treedc5db2ecbe150b6d1cba7c2dc6f5e7228a9cee1e /make/df-verify.py
parente563c0d80618d13acf5a67fbbe69a907ef07a30c (diff)
configure: gtk: make: scripts: Make scripts compatible with Python 3.
Diffstat (limited to 'make/df-verify.py')
-rw-r--r--make/df-verify.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/df-verify.py b/make/df-verify.py
index 8af3bee9c..eb29f4bc9 100644
--- a/make/df-verify.py
+++ b/make/df-verify.py
@@ -90,7 +90,7 @@ class Tool(hb_distfile.Tool):
error = hb_distfile.ToolError(self.name)
try:
self._run(error)
- except Exception, x:
+ except Exception as x:
self.debug_exception()
self.errln('%s failure; %s' % (error.op,x), exit=1)