aboutsummaryrefslogtreecommitdiff
path: root/rpki/django_settings/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'rpki/django_settings/common.py')
-rw-r--r--rpki/django_settings/common.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/rpki/django_settings/common.py b/rpki/django_settings/common.py
index 330ab165..a1d54c71 100644
--- a/rpki/django_settings/common.py
+++ b/rpki/django_settings/common.py
@@ -56,11 +56,10 @@ if os.getenv("RPKI_DJANGO_DEBUG") == "yes":
# fragile, tedious to use, and generally more complex than we need,
# because any given program is only going to be using one database.
-# Figure out which apps we're running. Modules that import this add
-# others. "south" will go away when we upgrade to Django 1.7+, at
-# which point we may leave this entirely for the importing modules.
-INSTALLED_APPS = ["south"]
+# Apps are also handled by the modules that import this one, now that
+# we don't require South.
+
# That would be it if we just need the ORM, but Django throws a hissy
# fit if SECRET_KEY isn't set, whether we use it for anything or not.