From b82c9b1d11e6e8f6bc0656e8c291c7e18c155ec3 Mon Sep 17 00:00:00 2001 From: ziirish Date: Wed, 15 Jun 2016 15:12:05 +0200 Subject: [PATCH] lint --- burpui/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/burpui/__init__.py b/burpui/__init__.py index c45e426b..d43ef77c 100644 --- a/burpui/__init__.py +++ b/burpui/__init__.py @@ -217,8 +217,8 @@ def init(conf=None, verbose=0, logfile=None, gunicorn=True, unittest=False, debu app.setup(app.config['CFG']) # manage application secret key - if app.secret_key and (app.secret_key.lower() == 'none' or \ - (app.secret_key.lower() == 'random' and gunicorn)): + if app.secret_key and (app.secret_key.lower() == 'none' or + (app.secret_key.lower() == 'random' and gunicorn)): logger.warning('Your setup is not secure! Please consider setting a' ' secret key in your configuration file') app.secret_key = 'Burp-UI'