mirror of https://github.com/django/django.git
Fixed a typo in a comment. Refs #17742.
This commit is contained in:
parent
314d82a94e
commit
939af5a654
|
@ -678,7 +678,7 @@ class DateField(Field):
|
||||||
return value
|
return value
|
||||||
if isinstance(value, datetime.datetime):
|
if isinstance(value, datetime.datetime):
|
||||||
if settings.USE_TZ and timezone.is_aware(value):
|
if settings.USE_TZ and timezone.is_aware(value):
|
||||||
# Convert aware datetimes to the current time zone
|
# Convert aware datetimes to the default time zone
|
||||||
# before casting them to dates (#17742).
|
# before casting them to dates (#17742).
|
||||||
default_timezone = timezone.get_default_timezone()
|
default_timezone = timezone.get_default_timezone()
|
||||||
value = timezone.make_naive(value, default_timezone)
|
value = timezone.make_naive(value, default_timezone)
|
||||||
|
|
Loading…
Reference in New Issue