summaryrefslogtreecommitdiff
path: root/giscanner/dumper.py
diff options
context:
space:
mode:
authorDamien Grassart <damien@grassart.com>2015-10-17 20:39:12 +0200
committerColin Walters <walters@verbum.org>2015-10-19 17:59:30 -0400
commit5341da3520ef513e5a7c49e2d8737bb3f2341a3d (patch)
tree7dd0053b9bd38c982cbce4b01891cf5af93dee3f /giscanner/dumper.py
parentcb956f565785835a6621ca8b89634fe58f59feaf (diff)
downloadgobject-introspection-5341da3520ef513e5a7c49e2d8737bb3f2341a3d.tar.gz
giscanner: Fix python2/3 compatibility
This allows building in both Python 2 and 3 by fixing a few text/binary ambiguities and using "as" in an except clause. https://bugzilla.gnome.org/show_bug.cgi?id=756763
Diffstat (limited to 'giscanner/dumper.py')
-rw-r--r--giscanner/dumper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/dumper.py b/giscanner/dumper.py
index 5bc48ada..f9c2a434 100644
--- a/giscanner/dumper.py
+++ b/giscanner/dumper.py
@@ -282,7 +282,7 @@ class DumpCompiler(object):
# this embedding is required, the build will fail anyway, as
# the dumper program will likely fail to run, and this means
# something went wrong with the build.
- except LinkError, e:
+ except LinkError as e:
if self._compiler.check_is_msvc():
msg = str(e)