aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-11-06 21:37:51 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-11-06 21:37:51 +0100
commitd94ebf2ce5b12982c18676eb628fdcfe47fc82fc (patch)
treee06f6d9a2c244f36603a8089a2cd76709f172fa3
parent603aff53cb2bf319845130e1491f2bed43828277 (diff)
downloadallocbench-d94ebf2ce5b12982c18676eb628fdcfe47fc82fc.tar.gz
allocbench-d94ebf2ce5b12982c18676eb628fdcfe47fc82fc.zip
fix invalid except syntax
-rw-r--r--src/benchmark.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/benchmark.py b/src/benchmark.py
index bac5a59..697e0d0 100644
--- a/src/benchmark.py
+++ b/src/benchmark.py
@@ -360,7 +360,7 @@ class Benchmark:
try:
self.start_servers(alloc_name=alloc_name, alloc=alloc, env=env)
- except: Exception as e:
+ except Exception as e:
print_error(e)
print_error("Skipping", alloc_name)
skip=True