You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FIX: Use except Exception instead of bare except (vqdang#237)
A bare `except` will catch `KeyboardInterrupt` and `SystemExit`, making it hard to stop the program with control+C. Using `except Exception` will catch all other exceptions.
0 commit comments