Changeset 520
- Timestamp:
- 08/07/05 17:47:01
- Files:
-
- trunk/cherrypy/lib/cptools.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/lib/cptools.py
r491 r520 109 109 m = getattr(self, "index", None) 110 110 if m and getattr(m, "exposed", False): 111 return self.index(*args, **kwargs) 111 try: 112 return self.index(*args, **kwargs) 113 except TypeError: 114 pass 112 115 raise cherrypy.NotFound, cherrypy.request.path 113 116 default.exposed = True

