Skip to content

Commit f5f6ad5

Browse files
author
Richard Jones
committed
fixed bug in args to new DateHTMLProperty in the local() method [SF#901444]
1 parent a3ffeeb commit f5f6ad5

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGES.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,11 @@ Cleanup:
7373

7474
2004-??-?? 0.6.6
7575
Fixed:
76-
- don't insert spaces into designators, it just confuses users (sf bug 898087)
76+
- don't insert spaces into designators, it just confuses users (sf bug
77+
898087)
7778
- Eudora can't handle utf-8 headers. We love Eudora. (sf bug 900046)
79+
- fixed bug in args to new DateHTMLProperty in the local() method (sf bug
80+
901444)
7881

7982

8083
2004-02-16 0.6.5

roundup/cgi/templating.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1280,8 +1280,8 @@ def local(self, offset):
12801280
'''
12811281
self.view_check()
12821282

1283-
return DateHTMLProperty(self._client, self._nodeid, self._prop,
1284-
self._formname, self._value.local(offset))
1283+
return DateHTMLProperty(self._client, self._classname, self._nodeid,
1284+
self._prop, self._formname, self._value.local(offset))
12851285

12861286
class IntervalHTMLProperty(HTMLProperty):
12871287
def plain(self):

0 commit comments

Comments
 (0)