Mercurial > p > roundup > code
diff roundup/cgi/actions.py @ 2990:3e55ba70f0b7 maint-0.7
fix typo (patch [SF#1076629])
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 07 Dec 2004 23:31:00 +0000 |
| parents | ace85b609a89 |
| children | fa49f3fe6afa |
line wrap: on
line diff
--- a/roundup/cgi/actions.py Fri Dec 03 22:21:31 2004 +0000 +++ b/roundup/cgi/actions.py Tue Dec 07 23:31:00 2004 +0000 @@ -1,4 +1,4 @@ -#$Id: actions.py,v 1.27.2.6 2004-11-05 05:14:35 richard Exp $ +#$Id: actions.py,v 1.27.2.7 2004-12-07 23:31:00 richard Exp $ import re, cgi, StringIO, urllib, Cookie, time, random @@ -801,7 +801,7 @@ self.client.userid = self.db.user.lookup(self.client.user) except KeyError: name = self.client.user - self.client.error_message.append(_('Ivalid login')) + self.client.error_message.append(_('Invalid login')) self.client.make_user_anonymous() return
