Changeset 101 for trunk/courant/core/utils/__init__.py
- Timestamp:
- 10/24/09 20:31:14 (11 months ago)
- Files:
-
- 1 modified
-
trunk/courant/core/utils/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/courant/core/utils/__init__.py
r96 r101 15 15 arguments = [arg for arg in args] 16 16 templates = [] 17 for template in arguments[0]: 18 if template: 19 templates.append(''.join([template, '.', request.extension])) 17 18 for extension in request.extension: 19 for template in arguments[0]: 20 if template: 21 templates.append(''.join([template, '.', extension])) 22 20 23 arguments[0] = templates 21 24