diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-09-15 18:11:43 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-09-15 18:11:43 +0000 |
| commit | 84fc132044179cfd2a190ba387ccea58fc63e146 (patch) | |
| tree | feba3c4164d63c33cc08c76b074bb7604ac7d34c | |
| parent | 388182b62299e063f843b0157e510a4021f7acfd (diff) | |
Fixed #3350 -- Fixed timezone setting. Thanks, Matt Boersma.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6300 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/conf/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/conf/__init__.py b/django/conf/__init__.py index f28da2d764..f19e509ea3 100644 --- a/django/conf/__init__.py +++ b/django/conf/__init__.py @@ -112,6 +112,7 @@ class Settings(object): # Move the time zone info into os.environ. See ticket #2315 for why # we don't do this unconditionally (breaks Windows). os.environ['TZ'] = self.TIME_ZONE + time.tzset() def get_all_members(self): return dir(self) |
