From b8b776aabe9afcd771f5c49afd2b41b44cae65a4 Mon Sep 17 00:00:00 2001 From: Kholid Fuadi Date: Sun, 13 Sep 2015 17:35:56 +0700 Subject: [PATCH] Fixed typo in django/forms/utils.py docstring. --- django/forms/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/forms/utils.py b/django/forms/utils.py index e29ead0427..3d87afd8c9 100644 --- a/django/forms/utils.py +++ b/django/forms/utils.py @@ -178,7 +178,7 @@ def from_current_timezone(value): def to_current_timezone(value): """ When time zone support is enabled, convert aware datetimes - to naive dateimes in the current time zone for display. + to naive datetimes in the current time zone for display. """ if settings.USE_TZ and value is not None and timezone.is_aware(value): current_timezone = timezone.get_current_timezone()