Changeset 1710
- Timestamp:
- 05/22/05 00:27:45 (4 years ago)
- Files:
-
- 1 modified
-
trunk/trac/Browser.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/trac/Browser.py
r1706 r1710 254 254 def match_request(self, req): 255 255 import re 256 match = re.match(r'/log(?:(/.*) )?', req.path_info)256 match = re.match(r'/log(?:(/.*)|$)', req.path_info) 257 257 if match: 258 258 req.args['path'] = match.group(1)
