Changeset 20
- Timestamp:
- Fri Jan 13 04:45:35 2006
- Files:
-
- trunk/cherrytemplate.py (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
trunk/cherrytemplate.py
r19 r20 490 490 491 491 if use_caching: 492 _cache[cache_key] = _original_template, _ compiled_template, _expanded_template492 _cache[cache_key] = _original_template, _expanded_template, _compiled_template 492 492 493 493 if loc is None: … … 555 555 errors.append(_indentAndNumberCode(tb, number = False)) 556 556 errors.append("The template code was:") 557 errors.append(_indentAndNumberCode(_expanded_template or '')) # TODO557 errors.append(_indentAndNumberCode(_expanded_template)) 557 557 if file is None: 558 558 errors.append("The original template was:")
