Skip to content

Commit

Permalink
Merge pull request #1220 from ton31337/fix/missing_exc
Browse files Browse the repository at this point in the history
Add missing `exc` exception variable for qa/bin/functional
  • Loading branch information
thomas-mangin authored Jul 9, 2024
2 parents 57c7573 + d57714c commit d10d79a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qa/bin/functional
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ class Exec(object):
except ValueError as exc: # I/O operation on closed file
self.message = str(exc)
pass
except Alarm:
except Alarm as exc:
self.message = str(exc)
pass

Expand Down

0 comments on commit d10d79a

Please sign in to comment.