Changeset 878
- Timestamp:
- 12/19/05 20:03:58
- Files:
-
- trunk/cherrypy/filters/staticfilter.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/filters/staticfilter.py
r856 r878 41 41 if root: 42 42 filename = os.path.join(root, filename) 43 44 try: 45 cptools.serveFile(filename) 46 request.executeMain = False 47 except cherrypy.NotFound: 48 # if we didn't find the static file, continue 49 # handling the request. we might find a dynamic 50 # handler instead. 51 pass 43 52 44 cptools.serveFile(filename)45 request.executeMain = False46

