Browse Source

Followed a best practice in the time zones docs.

Prevented localize from swallowing non existent or ambiguous
datetimes.
Aymeric Augustin 13 years ago
parent
commit
4b58e94f27
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/topics/i18n/timezones.txt

+ 1 - 1
docs/topics/i18n/timezones.txt

@@ -656,7 +656,7 @@ Usage
        >>> from django.utils.dateparse import parse_datetime
        >>> naive = parse_datetime("2012-02-21 10:28:45")
        >>> import pytz
-       >>> pytz.timezone("Europe/Helsinki").localize(naive)
+       >>> pytz.timezone("Europe/Helsinki").localize(naive, is_dst=None)
        datetime.datetime(2012, 2, 21, 10, 28, 45, tzinfo=<DstTzInfo 'Europe/Helsinki' EET+2:00:00 STD>)
 
    Note that ``localize`` is a pytz extension to the :class:`~datetime.tzinfo`