Changeset 3680
- Timestamp:
- 08/29/06 19:54:08 (2 years ago)
- Files:
-
- django/trunk/django/template/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/template/__init__.py
r3666 r3680 615 615 (The example assumes VARIABLE_ATTRIBUTE_SEPARATOR is '.') 616 616 """ 617 if path == 'False': 618 current = False 619 elif path == 'True': 620 current = True 621 elif path[0].isdigit(): 617 if path[0].isdigit(): 622 618 number_type = '.' in path and float or int 623 619 try:
