From 6d5fe21be4393ef644965669b4de2c976bc0096f Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Fri, 16 Oct 2015 23:07:52 +0000 Subject: PyLint. As usual, a lot of noise and a handful of real, albeit minor, bugs. svn path=/branches/tk705/; revision=6123 --- rpki/django_settings/pubd.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rpki/django_settings/pubd.py') diff --git a/rpki/django_settings/pubd.py b/rpki/django_settings/pubd.py index 6f1fe06b..7ae533e7 100644 --- a/rpki/django_settings/pubd.py +++ b/rpki/django_settings/pubd.py @@ -19,7 +19,7 @@ This module contains configuration settings for Django libraries for the pubd program. """ -from .common import * +from .common import * # pylint: disable=W0401 __version__ = "$Id$" @@ -43,6 +43,6 @@ INSTALLED_APPS = ["rpki.pubdb"] # 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 -- cgit v1.2.3