Changeset 5161
- Timestamp:
- 05/07/07 21:48:38 (1 year ago)
- Files:
-
- django/trunk/docs/templates_python.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/templates_python.txt
r5137 r5161 867 867 actual_date = resolve_variable(self.date_to_be_formatted, context) 868 868 return actual_date.strftime(self.format_string) 869 except VariableDoesNotExist:869 except template.VariableDoesNotExist: 870 870 return '' 871 871
