Skip to content

Commit b68d97c

Browse files
author
Richard Jones
committed
merge from HEAD
1 parent 4873ff8 commit b68d97c

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
@@ -12,6 +12,7 @@ Fixed:
1212
- allow suppression of search_text in indexargs_form (sf bug 1101548)
1313
- hack to fix some anydbm export problems (sf bug 1081454)
1414
- ignore AutoReply messages (sf patch 1085051)
15+
- fix ZRoundup syntax error (sf bug 1122335)
1516

1617

1718
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.17.2.2 2004-11-05 04:41:19 richard Exp $
17+
# $Id: ZRoundup.py,v 1.17.2.3 2005-02-15 00:28:03 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)