Skip to content

Commit

Permalink
Fix SysExit
Browse files Browse the repository at this point in the history
  • Loading branch information
smithumble committed Aug 1, 2024
1 parent a0bc0ec commit 3b27dac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion procedure_tools/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def main():
adapters.mount(session)
init_procedure(args, session=session)
except SystemExit as e:
sys.exit(str(e))
sys.exit(e)
except KeyboardInterrupt as e:
sys.exit(str(e))
else:
Expand Down

0 comments on commit 3b27dac

Please sign in to comment.