diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/Server/Reports/settings.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/Server/Reports/settings.py b/src/lib/Server/Reports/settings.py index 83cfeeccb..e4ca650fb 100644 --- a/src/lib/Server/Reports/settings.py +++ b/src/lib/Server/Reports/settings.py @@ -44,7 +44,10 @@ if DATABASE_ENGINE == 'sqlite3' and DATABASE_NAME == '': # Local time zone for this installation. All choices can be found here: # http://www.postgresql.org/docs/current/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE -TIME_ZONE = 'America/Chicago' +try: + TIME_ZONE = c.get('statistics', 'time_zone') +except: + TIME_ZONE = 'America/Chicago' # Language code for this installation. All choices can be found here: # http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes |