diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-05-07 22:44:37 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-05-07 22:44:37 -0500 |
commit | 3eae207c54b6c8fa4c2e122403b4462d93b8b713 (patch) | |
tree | 6abd7473bffabdb67acc204c02280868a449b9c9 | |
parent | 9fa51f07af5981a7d119aa6b5ea52ea6bba600cf (diff) | |
download | mediagoblin-3eae207c54b6c8fa4c2e122403b4462d93b8b713.tar.lz mediagoblin-3eae207c54b6c8fa4c2e122403b4462d93b8b713.tar.xz mediagoblin-3eae207c54b6c8fa4c2e122403b4462d93b8b713.zip |
[to_email] rather than list(to_email) which makes a nasty series like ['e','m','a','i','l']
-rw-r--r-- | mediagoblin/auth/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/auth/views.py b/mediagoblin/auth/views.py index 3ef1e75f..c3d24c74 100644 --- a/mediagoblin/auth/views.py +++ b/mediagoblin/auth/views.py @@ -53,7 +53,7 @@ def register(request): # TODO: There is no error handling in place send_email( mgoblin_globals.email_sender_address, - list(entry['email']), + [entry['email']], # TODO # Due to the distributed nature of GNU MediaGoblin, we should # find a way to send some additional information about the |