Mercurial > p > roundup > code
diff roundup/cgi/client.py @ 2952:1535b4b5d746
wrap long line
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Wed, 24 Nov 2004 05:16:15 +0000 |
| parents | deda13909085 |
| children | f4023f1cc1d6 |
line wrap: on
line diff
--- a/roundup/cgi/client.py Tue Nov 23 23:58:36 2004 +0000 +++ b/roundup/cgi/client.py Wed Nov 24 05:16:15 2004 +0000 @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.209 2004-11-23 22:44:43 richard Exp $ +# $Id: client.py,v 1.210 2004-11-24 05:16:15 a1s Exp $ """WWW request handler (also used in the stand-alone server). """ @@ -404,7 +404,8 @@ pass username, password = decoded.split(':') try: - self.get_action_class('login')(self).verifyLogin(username, password) + self.get_action_class('login')(self).verifyLogin( + username, password) except LoginError, err: self.make_user_anonymous() self.response_code = 403
