From eea29d89c8a2b48820edbee3f5d3ad6d3ef8c371 Mon Sep 17 00:00:00 2001 From: Jocelyn Delande Date: Fri, 1 May 2015 23:25:20 +0200 Subject: [PATCH] That config key was wrong btw, fixed upstream : https://github.com/spiral-project/ihatemoney/pull/121 --- conf/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/settings.py b/conf/settings.py index 5026544..5aeaa76 100644 --- a/conf/settings.py +++ b/conf/settings.py @@ -3,7 +3,7 @@ SQLALCHEMY_DATABASE_URI = 'mysql://ihatemoney:MY_MYSQL_PW@localhost/ihatemoney' SQLACHEMY_ECHO = DEBUG SECRET_KEY = "MY_SECRET_KEY" -DEFAULT_MAIL_SENDER = ("Budget manager", "MY_EMAIL") +MAIL_DEFAULT_SENDER = ("Budget manager", "MY_EMAIL") try: from settings import *