summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2007-11-25 18:11:44 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2007-11-25 18:11:44 +0000
commit891cc5df92cb0fc765d3f9e5413170001d97f470 (patch)
tree85fe8ecf05c8df19e74e32ea230094f03970e7e2
parent303d22b0d29eff19c9a68eb98a50ef336eaaeb2d (diff)
Minor styling fix in `DotExpandedDict.__init__`.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6713 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/utils/datastructures.py2
1 files changed, 1 insertions, 1 deletions
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):
"""