Django

Code

Changeset 6713

Show
Ignore:
Timestamp:
11/25/07 12:11:44 (1 year ago)
Author:
gwilson
Message:

Minor styling fix in DotExpandedDict.__init__.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/utils/datastructures.py

    r6712 r6713  
    317317                current[bits[-1]] = v 
    318318            except TypeError: # Special-case if current isn't a dict. 
    319                 current = {bits[-1] : v} 
     319                current = {bits[-1]: v} 
    320320 
    321321class FileDict(dict):