summaryrefslogtreecommitdiff
path: root/django/test/utils.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-03-28 18:33:29 -0400
committerTim Graham <timograham@gmail.com>2016-04-08 09:51:06 -0400
commitdf8d8d4292684d6ffa7474f1e201aed486f02b53 (patch)
treec661bf9b33de5288afe4f63347a2a9c768ef98eb /django/test/utils.py
parent2956e2f5e3f63d279f5dae2a995265364d3e6db1 (diff)
Fixed E128 flake8 warnings in django/.
Diffstat (limited to 'django/test/utils.py')
-rw-r--r--django/test/utils.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/django/test/utils.py b/django/test/utils.py
index f98d52b514..a5307a4310 100644
--- a/django/test/utils.py
+++ b/django/test/utils.py
@@ -521,9 +521,11 @@ def patch_logger(logger_name, log_level, log_kwargs=False):
# don't enforce a specific timezone (with timezone.override or equivalent),
# or attempt to interpret naive datetimes in the default timezone.
-requires_tz_support = skipUnless(TZ_SUPPORT,
- "This test relies on the ability to run a program in an arbitrary "
- "time zone, but your operating system isn't able to do that.")
+requires_tz_support = skipUnless(
+ TZ_SUPPORT,
+ "This test relies on the ability to run a program in an arbitrary "
+ "time zone, but your operating system isn't able to do that."
+)
@contextmanager