summaryrefslogtreecommitdiff
path: root/simplejson/encoder.py
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2006-02-16 19:10:36 +0000
committerBob Ippolito <bob@redivi.com>2006-02-16 19:10:36 +0000
commit479873dba71ff4b73bdb398e5ead9b29aa8cc909 (patch)
treeef6a721a556664240a0bf962389302a398a423fe /simplejson/encoder.py
parentd496eead9045bf2280dfbdb7329c6dabb9fd4495 (diff)
downloadsimplejson-479873dba71ff4b73bdb398e5ead9b29aa8cc909.tar.gz
YAML space
git-svn-id: http://simplejson.googlecode.com/svn/trunk@17 a4795897-2c25-0410-b006-0d3caba88fa1
Diffstat (limited to 'simplejson/encoder.py')
-rw-r--r--simplejson/encoder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/simplejson/encoder.py b/simplejson/encoder.py
index 5b4b7cd..b51f81f 100644
--- a/simplejson/encoder.py
+++ b/simplejson/encoder.py
@@ -181,7 +181,7 @@ class JSONEncoder(object):
else:
yield ', '
yield encoder(key)
- yield ':'
+ yield ': '
for chunk in self._iterencode(value, markers):
yield chunk
yield '}'