diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-05-10 10:03:01 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-06-02 11:18:47 +0200 |
| commit | 5f0597c73736f19a745e3f48782f443e14f8b7b4 (patch) | |
| tree | 8038deb310482a82e1bb7343a4f9fbd7ec022963 /scripts/histogram.py | |
| parent | a9dd27e2104ae6ffad49472ea03d6657b696f2ea (diff) | |
| download | allocbench-5f0597c73736f19a745e3f48782f443e14f8b7b4.tar.gz allocbench-5f0597c73736f19a745e3f48782f443e14f8b7b4.zip | |
scripts: improve code quality from some scripts
Diffstat (limited to 'scripts/histogram.py')
| -rwxr-xr-x | scripts/histogram.py | 2 |
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) |
