aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christopher Baklid <[email protected]>2018-06-02 22:06:36 +0200
committerGravatar Christopher Baklid <[email protected]>2018-06-02 22:06:36 +0200
commitffdde2b702fc1e9b184237b3bf43641861fd57d9 (patch)
treee27dcff4bfef9260322977d99fb0d452f87b1050
parentlint (diff)
faulty logic in config
-rw-r--r--config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/config.py b/config.py
index 437812c..c32f79d 100644
--- a/config.py
+++ b/config.py
@@ -20,7 +20,8 @@ def autodiscover():
except Exception:
print(traceback.format_exc())
- return '127.0.0.1'
+
+ return '127.0.0.1'
USERNAME = os.environ.get('RMQ_USERNAME', 'guest')