summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2012-08-29 05:39:23 -0300
committerJasper St. Pierre <jstpierre@mecheye.net>2012-08-29 05:39:23 -0300
commita56f250cb42786b4a7848095d23635a4e8d565a5 (patch)
tree6591b4b90534abb6c221aedb166a41b6fa252ac0
parentcc739d70aef27356a2c3f4df8c100b47a51a8c6b (diff)
downloadgobject-introspection-a56f250cb42786b4a7848095d23635a4e8d565a5.tar.gz
mallardwriter: Fix whitespace
The whitespace should come included with the surrounding 'other' tokens. We shouldn't need to add any.
-rw-r--r--giscanner/mallardwriter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/mallardwriter.py b/giscanner/mallardwriter.py
index 86df45d4..133f9214 100644
--- a/giscanner/mallardwriter.py
+++ b/giscanner/mallardwriter.py
@@ -245,7 +245,7 @@ class MallardFormatter(object):
tokens = self._scanner.scan(para)
words = [(tok, self._process_token(tok)) for tok in tokens]
words = [w[1] for w in words]
- return ' '.join(words)
+ return ''.join(words)
def format_function_name(self, func):
raise NotImplementedError