1
0
mirror of https://github.com/django/django.git synced 2025-04-05 22:16:41 +00:00

[1.8.x] Fixed typo in django/forms/utils.py docstring.

Backport of b8b776aabe9afcd771f5c49afd2b41b44cae65a4 from master
This commit is contained in:
Kholid Fuadi 2015-09-13 17:35:56 +07:00 committed by Tim Graham
parent 2955dfdeca
commit 07e01dce40

View File

@ -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()