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
Bare except: statements will swallow up all exceptions, making debugging more difficult and possibly making certain code paths inaccessible. For example in views.py line 2887 can never be reached as the except: lines above will consume any raised ZeroDivisionErrors.
Bare
except:
statements will swallow up all exceptions, making debugging more difficult and possibly making certain code paths inaccessible. For example inviews.py
line 2887 can never be reached as theexcept:
lines above will consume any raisedZeroDivisionError
s.The text was updated successfully, but these errors were encountered: