Skip to content

Commit

Permalink
web: don't show passwords. closes #22
Browse files Browse the repository at this point in the history
  • Loading branch information
borisfaure committed Aug 22, 2010
1 parent d0cb410 commit e6aef69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amsn2/ui/front_ends/web/bend.py
Expand Up @@ -139,7 +139,7 @@ def post_signin(self, w, uri, headers, body = None):
if (body and 'content-type' in headers
and headers['content-type'].startswith('application/x-www-form-urlencoded')):
args = parse_qs(body)
print "<<< signin: %s" %(args,)
print "<<< signin: {'username': %s, 'password': ******}" %(args['username'],)
self.login_window.signin(args['username'][0], args['password'][0])
self._logged_in = True
self._last_poll = time()
Expand Down

0 comments on commit e6aef69

Please sign in to comment.