Skip to content

Commit 2222cc1

Browse files
author
Richard Jones
committed
fix ZRoundup syntax error [SF#1122335]
1 parent b748a56 commit 2222cc1

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
@@ -100,6 +100,7 @@ Fixed:
100100
- allow suppression of search_text in indexargs_form (sf bug 1101548)
101101
- hack to fix some anydbm export problems (sf bug 1081454)
102102
- ignore AutoReply messages (sf patch 1085051)
103+
- fix ZRoundup syntax error (sf bug 1122335)
103104

104105

105106
2005-01-06 0.7.11

frontends/ZRoundup/ZRoundup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1515
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1616
#
17-
# $Id: ZRoundup.py,v 1.20 2004-11-05 04:42:45 richard Exp $
17+
# $Id: ZRoundup.py,v 1.21 2005-02-15 00:25:11 richard Exp $
1818
#
1919
''' ZRoundup module - exposes the roundup web interface to Zope
2020
@@ -97,7 +97,7 @@ def getvalue(self, key, default=None):
9797
def has_key(self, item):
9898
return self.form.has_key(item)
9999
def keys(self):
100-
return self.form.keys():
100+
return self.form.keys()
101101

102102
class ZRoundup(Item, PropertyManager, Implicit, Persistent):
103103
'''An instance of this class provides an interface between Zope and

0 commit comments

Comments
 (0)