diff options
author | Rob Austein <sra@hactrn.net> | 2015-10-08 02:17:47 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-10-08 02:17:47 +0000 |
commit | 9aa4f71e89de9e9189571c68ba1589024f77d71a (patch) | |
tree | 3be02352f5ca4b3816b44246c294ddfa7c176e05 /rpki/django_settings/pubd.py | |
parent | 3284d6687e0712cb78536be126d461833899e618 (diff) |
Initial sorta-mostly-working with Django 1.8. Incredibly noisy due to
incomprehensible advance depreciation warnings for Django 1.9.
svn path=/branches/tk705/; revision=6100
Diffstat (limited to 'rpki/django_settings/pubd.py')
-rw-r--r-- | rpki/django_settings/pubd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpki/django_settings/pubd.py b/rpki/django_settings/pubd.py index 80618652..6f1fe06b 100644 --- a/rpki/django_settings/pubd.py +++ b/rpki/django_settings/pubd.py @@ -33,9 +33,9 @@ DATABASES = dict( PASSWORD = cfg.get("sql-password", section = "pubd"))) -# Apps -- see comment in .common re "south" app. +# Apps. -INSTALLED_APPS.append("rpki.pubdb") +INSTALLED_APPS = ["rpki.pubdb"] # Allow local site to override any setting above -- but if there's |