Changeset 1853
- Timestamp:
- 01/13/08 16:58:08
- Files:
-
- branches/cherrypy-2.x/cherrypy/_cpwsgi.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/cherrypy-2.x/cherrypy/_cpwsgi.py
r1672 r1853 17 17 resource = httptools.urljoin(environ.get('SCRIPT_NAME', ''), 18 18 environ.get('PATH_INFO', '')) 19 if not (resource == "*" or resource.startswith("/")): 19 if resource == "/*": 20 resource = "*" 21 elif not resource.startswith("/"): 20 22 resource = "/" + resource 21 23

