From: Jasper St. Pierre Date: Wed, 29 Aug 2012 08:39:23 +0000 (-0300) Subject: mallardwriter: Fix whitespace X-Git-Tag: GOBJECT_INTROSPECTION_1_33_10~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a56f250cb42786b4a7848095d23635a4e8d565a5;p=platform%2Fupstream%2Fgobject-introspection.git mallardwriter: Fix whitespace The whitespace should come included with the surrounding 'other' tokens. We shouldn't need to add any. --- diff --git a/giscanner/mallardwriter.py b/giscanner/mallardwriter.py index 86df45d..133f921 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