diff options
Diffstat (limited to 'tests/project_template/test_settings.py')
| -rw-r--r-- | tests/project_template/test_settings.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/project_template/test_settings.py b/tests/project_template/test_settings.py index 25a95717a9..702ecec8c5 100644 --- a/tests/project_template/test_settings.py +++ b/tests/project_template/test_settings.py @@ -8,9 +8,11 @@ from django.utils import six from django.utils._os import upath -@unittest.skipIf(six.PY2, +@unittest.skipIf( + six.PY2, 'Python 2 cannot import the project template because ' - 'django/conf/project_template doesn\'t have an __init__.py file.') + 'django/conf/project_template doesn\'t have an __init__.py file.' +) class TestStartProjectSettings(TestCase): def setUp(self): # Ensure settings.py exists |
