From d94ebf2ce5b12982c18676eb628fdcfe47fc82fc Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Wed, 6 Nov 2019 21:37:51 +0100 Subject: fix invalid except syntax --- src/benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/benchmark.py') 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 -- cgit v1.2.3