Commit 09072330 authored by Jannis Leidel's avatar Jannis Leidel
Browse files

Added a missing warning forgotten in r17392.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17393 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 8f168976
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -750,6 +750,13 @@ class DateTimeField(DateField):
        if isinstance(value, datetime.date):
            value = datetime.datetime(value.year, value.month, value.day)
            if settings.USE_TZ:
                # For backwards compatibility, interpret naive datetimes in
                # local time. This won't work during DST change, but we can't
                # do much about it, so we let the exceptions percolate up the
                # call stack.
                warnings.warn(u"DateTimeField received a naive datetime (%s)"
                              u" while time zone support is active." % value,
                              RuntimeWarning)
                default_timezone = timezone.get_default_timezone()
                value = timezone.make_aware(value, default_timezone)
            return value