Fixed #22789 -- Deprecated django.contrib.webdesign.

Moved the {% lorem %} tag to built-in tags.
This commit is contained in:
Tim Graham 2014-07-12 09:50:27 -04:00
parent 7affb4ad58
commit 38e001ab6c
11 changed files with 150 additions and 122 deletions

View file

@ -135,6 +135,12 @@ def setup(verbosity, test_labels):
handler = logging.StreamHandler()
logger.addHandler(handler)
warnings.filterwarnings(
'ignore',
'django.contrib.webdesign will be removed in Django 2.0.',
RemovedInDjango20Warning
)
# Load all the ALWAYS_INSTALLED_APPS.
django.setup()