summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-05-06 09:50:30 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-05-06 09:50:30 +0200
commitecdd0914b18bc0f8ae0c03385a6c11ada4b3de6c (patch)
tree8f809bcce54cbc630e5b4f0beb7563d44c7e5d48
parent57102ce7819ecc3df3e979a4926d0cecc09c6f6e (diff)
Updated time zone FAQ with timezone.localize.
-rw-r--r--docs/topics/i18n/timezones.txt11
1 files changed, 5 insertions, 6 deletions
diff --git a/docs/topics/i18n/timezones.txt b/docs/topics/i18n/timezones.txt
index ec6270c1c4..89d5ef217e 100644
--- a/docs/topics/i18n/timezones.txt
+++ b/docs/topics/i18n/timezones.txt
@@ -664,7 +664,7 @@ Usage
documentation of pytz contains `more examples`_. You should review it
before attempting to manipulate aware datetimes.
-2. **How can I obtain the current time in the local time zone?**
+2. **How can I obtain the local time in the current time zone?**
Well, the first question is, do you really need to?
@@ -678,15 +678,14 @@ Usage
the datetime in UTC returned by :func:`django.utils.timezone.now` will be
sufficient.
- For the sake of completeness, though, if you really wanted the current time
- in the local time zone, here's how you would obtain it::
+ For the sake of completeness, though, if you really want the local time
+ in the current time zone, here's how you can obtain it::
- >>> import datetime
>>> from django.utils import timezone
- >>> datetime.datetime.now(tz=timezone.get_default_timezone())
+ >>> timezone.localtime(timezone.now())
datetime.datetime(2012, 3, 3, 20, 10, 53, 873365, tzinfo=<DstTzInfo 'Europe/Paris' CET+1:00:00 STD>)
- In this example, pytz_ is installed and :setting:`TIME_ZONE` is
+ In this example, pytz_ is installed and the current time zone is
``"Europe/Paris"``.
3. **How can I see all available time zones?**