mirror of
https://github.com/django/django.git
synced 2025-09-27 12:39:17 +00:00
Fixed typo in django/forms/utils.py docstring.
This commit is contained in:
parent
f3e5a74646
commit
b8b776aabe
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ def from_current_timezone(value):
|
||||||
def to_current_timezone(value):
|
def to_current_timezone(value):
|
||||||
"""
|
"""
|
||||||
When time zone support is enabled, convert aware datetimes
|
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):
|
if settings.USE_TZ and value is not None and timezone.is_aware(value):
|
||||||
current_timezone = timezone.get_current_timezone()
|
current_timezone = timezone.get_current_timezone()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue