diff options
author | Caleb Forbes Davis V <caldavis@gmail.com> | 2011-08-28 21:41:42 -0500 |
---|---|---|
committer | Caleb Forbes Davis V <caldavis@gmail.com> | 2011-08-28 21:41:42 -0500 |
commit | f85909c061a6cff211cf27f46879ad096ae7852f (patch) | |
tree | 91e8cb98ba6755303579eb82eff9430723c3f3f9 | |
parent | 65030735085782be067c8c97e288e9baf3dbdbf4 (diff) | |
download | mediagoblin-f85909c061a6cff211cf27f46879ad096ae7852f.tar.lz mediagoblin-f85909c061a6cff211cf27f46879ad096ae7852f.tar.xz mediagoblin-f85909c061a6cff211cf27f46879ad096ae7852f.zip |
needed to access email_sender_address through mg_globals.app_config
instead of mg_globals.email_sender_address.
-rw-r--r-- | mediagoblin/auth/lib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/auth/lib.py b/mediagoblin/auth/lib.py index df93b666..31dc4b7f 100644 --- a/mediagoblin/auth/lib.py +++ b/mediagoblin/auth/lib.py @@ -146,7 +146,7 @@ def send_fp_verification_email(user,request): # TODO: There is no error handling in place send_email( - mg_globals.email_sender_address, + mg_globals.app_config['email_sender_address'], [user['email']], 'GNU MediaGoblin - Change forgotten password!', rendered_email) |