Skip to content
This repository has been archived by the owner on Jan 25, 2018. It is now read-only.

Commit

Permalink
Do not propagate exceptions (maybe bug 1132548)
Browse files Browse the repository at this point in the history
The docs suggest to never propagate exceptions
on a live site and TBH I'm not sure why this was
here to begin with.
  • Loading branch information
kumar303 committed Apr 28, 2015
1 parent 1c7df82 commit d3f62a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion webpay/settings/base.py
Expand Up @@ -25,7 +25,9 @@
}

DEBUG = True
DEBUG_PROPAGATE_EXCEPTIONS = True
# If set to True, you can see tracebacks in the console
# for local development.
DEBUG_PROPAGATE_EXCEPTIONS = False

# Tell Django to do everything in UTC.
USE_TZ = True
Expand Down

0 comments on commit d3f62a2

Please sign in to comment.