diff options
author | Gregy <gregy@gregy.cz> | 2010-08-07 13:21:29 +0200 |
---|---|---|
committer | Gregy <gregy@gregy.cz> | 2010-08-07 13:21:29 +0200 |
commit | d94273d6619de8a06c81357eaaf8e7badabcea88 (patch) | |
tree | 8fa584cc5f534a1a0e460f46d518e1a62f610a74 | |
parent | Settings fix for django 1.1 (diff) | |
download | pyload-d94273d6619de8a06c81357eaaf8e7badabcea88.tar.xz |
Use local timezone settings if django version >= 1.2
-rw-r--r-- | module/web/settings.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/module/web/settings.py b/module/web/settings.py index 760ace9f4..e135825d1 100644 --- a/module/web/settings.py +++ b/module/web/settings.py @@ -6,6 +6,7 @@ TEMPLATE_DEBUG = DEBUG import os.path
import sys
+import django
SERVER_VERSION = "0.3.2"
@@ -75,7 +76,11 @@ DATABASE_PORT = '' # Set to empty string for default. Not used with # although not all choices may be available on all operating systems.
# If running in a Windows environment this must be set to the same as your
# system time zone.
-TIME_ZONE = 'Europe'
+if django.VERSION[0] > 1 or django.VERSION[1] > 1:
+ zone = None
+else:
+ zone = 'Europe'
+TIME_ZONE = zone
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
|