Changeset 1814
- Timestamp:
- 10/30/07 18:16:54
- Files:
-
- trunk/cherrypy/lib/covercp.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/lib/covercp.py
r1627 r1814 196 196 newpath = os.path.join(path, name) 197 197 198 if newpath. startswith(base):198 if newpath.lower().startswith(base): 199 199 relpath = newpath[len(base):] 200 200 yield "| " * relpath.count(os.sep) … … 206 206 207 207 # Now list the files 208 if path. startswith(base):208 if path.lower().startswith(base): 209 209 relpath = path[len(base):] 210 210 files = [k for k, v in root.iteritems() if not v]

