Skip to content

Commit f83cb67

Browse files
author
Derrick Hudson
committed
fixed [SF#576086] (dumb copying mistake)
1 parent a14cb3e commit f83cb67

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ are given with the most recent entry first.
33

44
2002-??-?? 0.?.?
55
Fixed:
6+
. #576086 ] dumb copying mistake (frontends/ZRoundup.py)
67
. installation instructions now mention "python2" in "testing your python".
78

89

frontends/ZRoundup/ZRoundup.py

Lines changed: 6 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.8 2002-06-16 01:01:42 dman13 Exp $
17+
# $Id: ZRoundup.py,v 1.8.2.1 2002-07-04 01:26:26 dman13 Exp $
1818
#
1919
''' ZRoundup module - exposes the roundup web interface to Zope
2020
@@ -129,7 +129,8 @@ def _opendb(self):
129129

130130
# figure out the path components to set
131131
url = urlparse.urlparse( self.absolute_url() )
132-
path_components = url[2].split( '/' )
132+
path = url[2]
133+
path_components = path.split( '/' )
133134

134135
# special case when roundup is '/' in this virtual host,
135136
if path == "/" :
@@ -207,6 +208,9 @@ def __getitem__(self, item):
207208

208209
#
209210
# $Log: not supported by cvs2svn $
211+
# Revision 1.8 2002/06/16 01:01:42 dman13
212+
# remove CR characters embedded in messages (ZRoundup)
213+
#
210214
# Revision 1.7 2002/06/14 01:25:46 dman13
211215
# Fixed bug #558867 by redirecting /instance requests to /instance/
212216
#

0 commit comments

Comments
 (0)