Skip to content

Commit ee89512

Browse files
committed
fix F821 reported by flake8
1 parent 6561a45 commit ee89512

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: testgres/testgres.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1181,7 +1181,7 @@ def _execute_utility(util, args, logfile, write_to_pipe=True):
11811181
[util] + args)))
11821182
file_out.write('\n')
11831183
file_out.write(out)
1184-
except FileNotFoundError:
1184+
except IOError:
11851185
pass
11861186

11871187
if process.returncode:

0 commit comments

Comments
 (0)