[Zope-Checkins] CVS: Releases/Zope/lib/python/ZPublisher - HTTPRequest.py:1.61.6.1
Evan Simpson
evan@zope.com
Mon, 25 Feb 2002 10:47:21 -0500
Update of /cvs-repository/Releases/Zope/lib/python/ZPublisher
In directory cvs.zope.org:/tmp/cvs-serv24977/ZPublisher
Modified Files:
Tag: Zope-2_5-branch
HTTPRequest.py
Log Message:
Fix vhm bug.
=== Releases/Zope/lib/python/ZPublisher/HTTPRequest.py 1.61 => 1.61.6.1 ===
other = self.other
if type(path) is type(''):
- path = filter(None, path.split( '/'))
- self._script[:] = map(quote, path)
+ path = path.split( '/')
+ self._script[:] = map(quote, filter(None, path))
del self._steps[:]
parents = other['PARENTS']
if hard: