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
1 changed files with 1 additions and 1 deletions

View File

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