1
0
mirror of https://github.com/django/django.git synced 2025-06-05 11:39:13 +00:00

Minor styling fix in DotExpandedDict.__init__.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6713 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2007-11-25 18:11:44 +00:00
parent 303d22b0d2
commit 891cc5df92

View File

@ -316,7 +316,7 @@ class DotExpandedDict(dict):
try: try:
current[bits[-1]] = v current[bits[-1]] = v
except TypeError: # Special-case if current isn't a dict. except TypeError: # Special-case if current isn't a dict.
current = {bits[-1] : v} current = {bits[-1]: v}
class FileDict(dict): class FileDict(dict):
""" """