diff options
author | Rob Austein <sra@hactrn.net> | 2016-01-08 15:30:47 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-01-08 15:30:47 +0000 |
commit | 1683d8fb0fa58162d15b2877fba477e505340545 (patch) | |
tree | f79f1f140322260f0c309e184809e7658261ab0e /rpki/django_settings/common.py | |
parent | 327638bdc5114c96171827764690d0434872fa8b (diff) |
Start converting rcynicng to use a database.
svn path=/branches/tk705/; revision=6218
Diffstat (limited to 'rpki/django_settings/common.py')
-rw-r--r-- | rpki/django_settings/common.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rpki/django_settings/common.py b/rpki/django_settings/common.py index 4aa3e119..2f41fe77 100644 --- a/rpki/django_settings/common.py +++ b/rpki/django_settings/common.py @@ -118,3 +118,8 @@ if cfg.has_option("secret-key", section = "web_portal"): SECRET_KEY = cfg.get("secret-key", section = "web_portal") else: SECRET_KEY = os.urandom(66).encode("hex") + + +# Django defaults to thinking everybody lives in Chicago. + +TIME_ZONE = "UTC" |