aboutsummaryrefslogtreecommitdiff
path: root/instance
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-10 15:04:45 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-10 15:04:45 +0100
commit07569ca2deae5d0ac2cc0f3298d68526dc05b9ff (patch)
tree76559eed6b6c90dca6f33c74fc49d9ab243a18e4 /instance
parentAdded flake8 in dev requirements. (diff)
downloadnewspipe-07569ca2deae5d0ac2cc0f3298d68526dc05b9ff.tar.gz
newspipe-07569ca2deae5d0ac2cc0f3298d68526dc05b9ff.tar.bz2
newspipe-07569ca2deae5d0ac2cc0f3298d68526dc05b9ff.zip
fixed issues reported by flake8.
Diffstat (limited to 'instance')
-rw-r--r--instance/production.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/instance/production.py b/instance/production.py
index 9dc56a76..7fd59916 100644
--- a/instance/production.py
+++ b/instance/production.py
@@ -41,7 +41,7 @@ MAIL_USE_SSL = False
MAIL_DEBUG = DEBUG
MAIL_USERNAME = None
MAIL_PASSWORD = None
-MAIL_DEFAULT_SENDER = ADMIN_EMAIL
+MAIL_DEFAULT_SENDER = "admin@admin.localhost"
# Misc
BASE_DIR = os.path.abspath(os.path.dirname('.'))
bgstack15