From 4fcf1f9eaed444149d8456ec9759f435541a488c Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Fri, 12 Dec 2014 10:47:58 -0500 Subject: [PATCH] Move simplefilter comments before call --- cms/envs/test.py | 2 +- lms/envs/test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cms/envs/test.py b/cms/envs/test.py index 9e3d760dff..2d16ded81a 100644 --- a/cms/envs/test.py +++ b/cms/envs/test.py @@ -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 ###################################### diff --git a/lms/envs/test.py b/lms/envs/test.py index 357289cc56..80206c1c91 100644 --- a/lms/envs/test.py +++ b/lms/envs/test.py @@ -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