summaryrefslogtreecommitdiff
path: root/tests/project_template
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-04-07 22:04:45 -0400
committerTim Graham <timograham@gmail.com>2016-04-08 10:12:33 -0400
commit92053acbb9160862c3e743a99ed8ccff8d4f8fd6 (patch)
tree50e7fd28a650f0e2352cf94f92e5a66d28a81988 /tests/project_template
parentdf8d8d4292684d6ffa7474f1e201aed486f02b53 (diff)
downloaddjango-92053acbb9160862c3e743a99ed8ccff8d4f8fd6.tar.gz
Fixed E128 flake8 warnings in tests/.
Diffstat (limited to 'tests/project_template')
-rw-r--r--tests/project_template/test_settings.py6
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