Merge pull request #1921 from loic/ticket21432

Fixed typo and slightly improved error message when db is missing time zone definitions.
This commit is contained in:
Alex Gaynor 2013-11-15 05:05:20 -08:00
commit a90ffcac21
1 changed files with 2 additions and 2 deletions

View File

@ -1083,8 +1083,8 @@ class SQLDateTimeCompiler(SQLCompiler):
if settings.USE_TZ:
if datetime is None:
raise ValueError("Database returned an invalid value "
"in QuerySet.dates(). Are time zone "
"definitions and pytz installed?")
"in QuerySet.datetimes(). Are time zone "
"definitions for your database and pytz installed?")
datetime = datetime.replace(tzinfo=None)
datetime = timezone.make_aware(datetime, self.query.tzinfo)
yield datetime