Changeset 6713
- Timestamp:
- 11/25/07 12:11:44 (1 year ago)
- Files:
-
- django/trunk/django/utils/datastructures.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/utils/datastructures.py
r6712 r6713 317 317 current[bits[-1]] = v 318 318 except TypeError: # Special-case if current isn't a dict. 319 current = {bits[-1] : v}319 current = {bits[-1]: v} 320 320 321 321 class FileDict(dict):
