summaryrefslogtreecommitdiff
path: root/django/forms/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/forms/utils.py')
-rw-r--r--django/forms/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/forms/utils.py b/django/forms/utils.py
index 73fca86325..8bfdd0a799 100644
--- a/django/forms/utils.py
+++ b/django/forms/utils.py
@@ -159,7 +159,7 @@ def from_current_timezone(value):
return timezone.make_aware(value, current_timezone)
except Exception as exc:
raise ValidationError(
- _('%(datetime)s couldn\'t be interpreted '
+ _('%(datetime)s couldn’t be interpreted '
'in time zone %(current_timezone)s; it '
'may be ambiguous or it may not exist.'),
code='ambiguous_timezone',