mirror of https://github.com/django/django.git
Silenced a spurious warning.
Thanks Timo for the report. Regression from 2f65b8e1
. Refs #21794.
This commit is contained in:
parent
a938fff030
commit
4a488c1483
|
@ -132,7 +132,7 @@ def setup(verbosity, test_labels):
|
||||||
)
|
)
|
||||||
warnings.filterwarnings(
|
warnings.filterwarnings(
|
||||||
'ignore',
|
'ignore',
|
||||||
'Model class django.contrib.comments.models.*supported in Django 1.9.',
|
'Model class django.contrib.comments.models.* Django 1.9.',
|
||||||
PendingDeprecationWarning
|
PendingDeprecationWarning
|
||||||
)
|
)
|
||||||
# Load all the ALWAYS_INSTALLED_APPS.
|
# Load all the ALWAYS_INSTALLED_APPS.
|
||||||
|
|
Loading…
Reference in New Issue