summaryrefslogtreecommitdiff
path: root/giscanner/utils.py
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2012-06-29 14:43:33 +0200
committerDieter Verfaillie <dieterv@optionexplicit.be>2012-11-28 21:31:22 +0100
commitbdb479f3663d284e1a785f603f17670a754d0bbf (patch)
treed00a4a617c28cc70c7d8c050d2db5cbf873755c0 /giscanner/utils.py
parent0cd1ad297e0b7bb78242ea6b22955e133dfc7958 (diff)
downloadgobject-introspection-bdb479f3663d284e1a785f603f17670a754d0bbf.tar.gz
giscanner: remove unused variables
https://bugzilla.gnome.org/show_bug.cgi?id=688897
Diffstat (limited to 'giscanner/utils.py')
-rw-r--r--giscanner/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/utils.py b/giscanner/utils.py
index 642da362..9adf6d93 100644
--- a/giscanner/utils.py
+++ b/giscanner/utils.py
@@ -121,7 +121,7 @@ def get_libtool_command(options):
try:
subprocess.check_call(['libtool', '--version'],
stdout=open(os.devnull))
- except (subprocess.CalledProcessError, OSError), e:
+ except (subprocess.CalledProcessError, OSError):
# If libtool's not installed, assume we don't need it
return None