Skip to content

Commit 4899aea

Browse files
committed
fix E722 reported by flake8
1 parent fd09bdb commit 4899aea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎testgres/testgres.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ def print_node_file(node_file):
672672
try:
673673
with open(node_file, 'r') as f:
674674
return f.read()
675-
except:
675+
except Exception as e:
676676
pass
677677
return "### file not found ###\n"
678678

0 commit comments

Comments
 (0)