diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-06-12 17:27:37 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-06-12 17:27:37 -0500 |
commit | 6e7ce8d1af8c6fcf7d00992b1c8ef0e8c1602479 (patch) | |
tree | dc558daff165dff54b9ae65e033ff1e949e8418d /mediagoblin/auth/lib.py | |
parent | da579dec005834f92fb7d968e14610be9936d9a5 (diff) | |
download | mediagoblin-6e7ce8d1af8c6fcf7d00992b1c8ef0e8c1602479.tar.lz mediagoblin-6e7ce8d1af8c6fcf7d00992b1c8ef0e8c1602479.tar.xz mediagoblin-6e7ce8d1af8c6fcf7d00992b1c8ef0e8c1602479.zip |
mediagoblin.globals->mediagoblin.mg_globals
Diffstat (limited to 'mediagoblin/auth/lib.py')
-rw-r--r-- | mediagoblin/auth/lib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/auth/lib.py b/mediagoblin/auth/lib.py index f40e560f..08bbdd16 100644 --- a/mediagoblin/auth/lib.py +++ b/mediagoblin/auth/lib.py @@ -20,7 +20,7 @@ import random import bcrypt from mediagoblin.util import send_email, render_template -from mediagoblin import globals as mgoblin_globals +from mediagoblin import mg_globals def bcrypt_check_password(raw_pass, stored_hash, extra_salt=None): @@ -112,7 +112,7 @@ def send_verification_email(user, request): # TODO: There is no error handling in place send_email( - mgoblin_globals.email_sender_address, + mg_globals.email_sender_address, [user['email']], # TODO # Due to the distributed nature of GNU MediaGoblin, we should |