mirror of https://github.com/django/django.git
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:
parent
303d22b0d2
commit
891cc5df92
|
@ -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):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue