diff options
author | Michael Elkins <melkins@tislabs.com> | 2016-07-20 01:09:47 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2016-07-20 01:09:47 +0000 |
commit | a7c59c31321cdc5297572e504e8ccfab742c7e1f (patch) | |
tree | e859cbda629426a3f2af8b524e8e933bd76d720b | |
parent | eef1fe5d4f10951b2e0d81a00ee13063a6881d87 (diff) |
need to add contenttypes and auth to INSTALLED_APPS even for gui auxillary scripts
see #825
svn path=/branches/tk705/; revision=6450
-rw-r--r-- | rpki/django_settings/gui_script.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rpki/django_settings/gui_script.py b/rpki/django_settings/gui_script.py index 4aa18e2c..bc1862f9 100644 --- a/rpki/django_settings/gui_script.py +++ b/rpki/django_settings/gui_script.py @@ -28,7 +28,8 @@ from .irdb import * # pylint: disable=W0401,W0614 __version__ = "$Id: gui.py 6427 2016-05-07 04:14:02Z sra $" INSTALLED_APPS.extend(( - #"django.contrib.contenttypes", # not sure if required for aux scripts? + "django.contrib.auth", + "django.contrib.contenttypes", "rpki.gui.app", "rpki.gui.gui_rpki_cache", "rpki.gui.routeview", |