diff options
Diffstat (limited to 'rpki/django_settings/irdb.py')
-rw-r--r-- | rpki/django_settings/irdb.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rpki/django_settings/irdb.py b/rpki/django_settings/irdb.py index 7749b9d6..11e7417a 100644 --- a/rpki/django_settings/irdb.py +++ b/rpki/django_settings/irdb.py @@ -21,7 +21,7 @@ the GUI code also uses this but adds a bunch of other stuff, thus has its own settings file. """ -from .common import * +from .common import * # pylint: disable=W0401 __version__ = "$Id$" @@ -44,6 +44,6 @@ INSTALLED_APPS = ["rpki.irdb"] # putting that configuration into rpki.conf and just adding code here # to read that configuration. try: - from local_settings import * -except: + from local_settings import * # pylint: disable=W0401,F0401 +except ImportError: pass |