summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorShai Berger <shai@platonix.com>2014-12-01 02:08:46 +0200
committerShai Berger <shai@platonix.com>2014-12-01 02:18:16 +0200
commitd62e16fe46684f86dada90fb615651686945263d (patch)
tree9e92f1639dfda7a4f3ab98ea82fc576bfac2888f /django
parent25e0329fbed7f669868ecd1ac87cd40cc5e1eef5 (diff)
[1.7.x] Restored the 'TEST_' prefix in the warning about deprecated test database settings
Backport of 88edce2abb from master
Diffstat (limited to 'django')
-rw-r--r--django/db/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/utils.py b/django/db/utils.py
index 40471bfbbb..18fc7d41fd 100644
--- a/django/db/utils.py
+++ b/django/db/utils.py
@@ -216,7 +216,7 @@ class ConnectionHandler(object):
else:
test_settings.update(old_test_settings)
for key, _ in six.iteritems(old_test_settings):
- warnings.warn("In Django 1.9 the %s connection setting will be moved "
+ warnings.warn("In Django 1.9 the TEST_%s connection setting will be moved "
"to a %s entry in the TEST setting" %
(self.TEST_SETTING_RENAMES_REVERSE.get(key, key), key),
RemovedInDjango19Warning, stacklevel=2)