Move simplefilter comments before call

This commit is contained in:
David Baumgold
2014-12-12 10:47:58 -05:00
parent 838ce74a3f
commit 4fcf1f9eae
2 changed files with 2 additions and 2 deletions

View File

@@ -158,9 +158,9 @@ filterwarnings('ignore', message='No request passed to the backend, unable to ra
# Ignore deprecation warnings (so we don't clutter Jenkins builds/production)
# https://docs.python.org/2/library/warnings.html#the-warnings-filter
simplefilter('ignore')
# Change to "default" to see the first instance of each hit
# or "error" to convert all into errors
simplefilter('ignore')
################################# CELERY ######################################

View File

@@ -199,9 +199,9 @@ filterwarnings('ignore', message='No request passed to the backend, unable to ra
# Ignore deprecation warnings (so we don't clutter Jenkins builds/production)
# https://docs.python.org/2/library/warnings.html#the-warnings-filter
simplefilter('ignore')
# Change to "default" to see the first instance of each hit
# or "error" to convert all into errors
simplefilter('ignore')
######### Third-party auth ##########
FEATURES['ENABLE_THIRD_PARTY_AUTH'] = True