Skip to content

Commit 46424e6

Browse files
author
Richard Jones
committed
fix typo (patch [SF#1076629])
1 parent 1b1289c commit 46424e6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ are given with the most recent entry first.
55
Fixed:
66
- reset ID counters if the database is cleared (thanks William)
77
- apply IE caching "fix" to automatically serve up all pages expired
8+
- fix typo (sf patch 1076629)
89

910

1011
2004-10-26 0.7.9

roundup/cgi/actions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#$Id: actions.py,v 1.27.2.6 2004-11-05 05:14:35 richard Exp $
1+
#$Id: actions.py,v 1.27.2.7 2004-12-07 23:31:00 richard Exp $
22

33
import re, cgi, StringIO, urllib, Cookie, time, random
44

@@ -801,7 +801,7 @@ def handle(self):
801801
self.client.userid = self.db.user.lookup(self.client.user)
802802
except KeyError:
803803
name = self.client.user
804-
self.client.error_message.append(_('Ivalid login'))
804+
self.client.error_message.append(_('Invalid login'))
805805
self.client.make_user_anonymous()
806806
return
807807

0 commit comments

Comments
 (0)