From b203b9477176abf482a3e096c595567c308c1389 Mon Sep 17 00:00:00 2001 From: Lukas Holecek Date: Apr 18 2018 10:52:48 +0000 Subject: Fix settings template according to PEP8 After copying the "settings.py.example" to "settings.py", flake8 started to complain. --- diff --git a/conf/settings.py.example b/conf/settings.py.example index a1357c2..9e5f49e 100644 --- a/conf/settings.py.example +++ b/conf/settings.py.example @@ -1,5 +1,5 @@ # Copy this file to `conf/settings.py` to put it into effect. It overrides the values defined # in `greenwave/config.py`. SECRET_KEY = 'replace-me-with-something-random' -HOST= '0.0.0.0' +HOST = '0.0.0.0' PORT = 5005