summaryrefslogtreecommitdiff
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:12:19 +0200
commit88edce2abb235999523b65977dd1214cb39dabaa (patch)
treeed71e6c0111a2c28574a28ba8a2a6d3ddcc74f95
parent6dbe979b4d9396e1b307c7d27388c97c13beb21c (diff)
Restored the 'TEST_' prefix in the warning about deprecated test database settings
-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 f1f43ee5ed..acb90c0a1a 100644
--- a/django/db/utils.py
+++ b/django/db/utils.py
@@ -212,7 +212,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)