Skip to content

Commit 7f310c1

Browse files
author
Richard Jones
committed
another minor ZRoundup patch
1 parent f27eea9 commit 7f310c1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

frontends/ZRoundup/ZRoundup.py

Lines changed: 2 additions & 3 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.14 2002-10-10 03:47:27 richard Exp $
17+
# $Id: ZRoundup.py,v 1.15 2002-10-16 06:48:50 richard Exp $
1818
#
1919
''' ZRoundup module - exposes the roundup web interface to Zope
2020
@@ -153,7 +153,6 @@ def _opendb(self):
153153

154154
return instance.Client(instance, request, env, form)
155155

156-
157156
security.declareProtected('View', 'index_html')
158157
def index_html(self):
159158
'''Alias index_html to roundup's index
@@ -182,7 +181,7 @@ def __getitem__(self, item):
182181
try:
183182
client = self._opendb()
184183
# fake the path that roundup should use
185-
client.split_path = [item]
184+
client.path = item
186185
# and call roundup to do something
187186
client.main()
188187
return ''

0 commit comments

Comments
 (0)