From 891cc5df92cb0fc765d3f9e5413170001d97f470 Mon Sep 17 00:00:00 2001 From: Gary Wilson Jr Date: Sun, 25 Nov 2007 18:11:44 +0000 Subject: [PATCH] Minor styling fix in `DotExpandedDict.__init__`. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6713 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/utils/datastructures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/utils/datastructures.py b/django/utils/datastructures.py index ca8d48416b..3bb75d262e 100644 --- a/django/utils/datastructures.py +++ b/django/utils/datastructures.py @@ -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): """