summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2018-10-29 11:54:24 +0100
committerThomas Waldmann <tw@waldmann-edv.de>2018-10-29 12:36:03 +0100
commit10cdadb2f8b33cd6060d9e071fe652f743c7568a (patch)
treed0d10d87c0a581834df9503f994b438b0401c97d /scripts
parentfc4a7bc0c90a1790ef83e9a4e6acf2b8422917f4 (diff)
flake8: fix F841
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/glibc_check.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/glibc_check.py b/scripts/glibc_check.py
index 02be4aac4..eb198ed56 100755
--- a/scripts/glibc_check.py
+++ b/scripts/glibc_check.py
@@ -41,7 +41,7 @@ def main():
overall_versions.add(requires_glibc)
if verbose:
print("%s %s" % (filename, format_version(requires_glibc)))
- except subprocess.CalledProcessError as e:
+ except subprocess.CalledProcessError:
if verbose:
print("%s errored." % filename)