aboutsummaryrefslogtreecommitdiff
path: root/scripts/histogram.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/histogram.py')
-rwxr-xr-xscripts/histogram.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/histogram.py b/scripts/histogram.py
index 5bca21c..2bf6779 100755
--- a/scripts/histogram.py
+++ b/scripts/histogram.py
@@ -48,7 +48,7 @@ def main():
if fname.startswith("chatty") and fext == ".txt":
try:
chattyparser = importlib.import_module("chattyparser")
- except ModuleNotFoundError as err:
+ except ModuleNotFoundError:
print("Can't import chattyparser")
sys.exit(1)
hist, calls, _ = chattyparser.parse(args.input_file, coll_size=False)