diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2013-10-08 10:00:39 +0800 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2013-10-08 10:00:39 +0800 |
| commit | 8ff43039466f5e3c78d3587fdbe229ed44c4e1aa (patch) | |
| tree | 9c3b10d1a205d885b1482b939d38fbdba6922a55 /django | |
| parent | 935001c4f1ab8660c76323854945e9e660514046 (diff) | |
Refs #21197 -- Clarified upgrade check message.
Thanks to Carl and Shai for the discussion.
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/checks/compatibility/django_1_6_0.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/django/core/checks/compatibility/django_1_6_0.py b/django/core/checks/compatibility/django_1_6_0.py index e38b2d32ec..96b29d6b77 100644 --- a/django/core/checks/compatibility/django_1_6_0.py +++ b/django/core/checks/compatibility/django_1_6_0.py @@ -16,10 +16,8 @@ def check_test_runner(): if test_runner_setting == new_default: message = [ - "You have not explicitly set 'TEST_RUNNER'. In Django 1.6,", - "there is a new test runner ('%s')" % new_default, - "by default. You should ensure your tests are still all", - "running & behaving as expected. See", + "Django 1.6 introduced a new default test runner ('%s')" % new_default, + "You should ensure your tests are all running & behaving as expected. See", "https://docs.djangoproject.com/en/dev/releases/1.6/#discovery-of-tests-in-any-test-module", "for more information.", ] |
