Skip to content

Commit b1839df

Browse files
author
Richard Jones
committed
fix error message in form parser
1 parent e0a42e3 commit b1839df

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Fixed:
1616
- Verbose option for import and export (sf bug 1505645)
1717
- -c option for roundup-mailgw won't accept parameter (sf bug 1505649)
1818
- '?' in rfc2822-encoded header isn't quoted (sf bug 1505663)
19+
- fix error message in form parser
1920

2021

2122
2006-04-27 1.1.2

roundup/cgi/form_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def parse(self, create=0, num_re=re.compile('^\d+$')):
281281
m = self.FV_DESIGNATOR.match(entry)
282282
if not m:
283283
raise FormError, self._('link "%(key)s" '
284-
'value "%(value)s" not a designator') % locals()
284+
'value "%(entry)s" not a designator') % locals()
285285
value.append((m.group(1), m.group(2)))
286286

287287
# make sure the link property is valid

0 commit comments

Comments
 (0)