summaryrefslogtreecommitdiff
path: root/django/utils/timezone.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/utils/timezone.py')
-rw-r--r--django/utils/timezone.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/timezone.py b/django/utils/timezone.py
index 0c44d4fd4d..c0ea04c7d8 100644
--- a/django/utils/timezone.py
+++ b/django/utils/timezone.py
@@ -360,7 +360,7 @@ def make_aware(value, timezone):
# Check that we won't overwrite the timezone of an aware datetime.
if is_aware(value):
raise ValueError(
- "make_aware expects a naive datetime, got %s" % value)
+ "make_aware expects a naive datetime, got %s" % value)
# This may be wrong around DST changes!
return value.replace(tzinfo=timezone)