Skip to content

Commit

Permalink
Remove traceback output on General Error
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjwbbc committed Mar 23, 2023
1 parent a5ee3b4 commit 4aa8aa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/python3/m1_session_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ async def main():
return 2
except Exception as err:
print(f'General failure: {err}')
traceback.print_exc() # add in for debugging
#traceback.print_exc() # add in for debugging
return 2
return 0

Expand Down

0 comments on commit 4aa8aa1

Please sign in to comment.