[gobject-introspection] mallardwriter: Fix whitespace
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gobject-introspection] mallardwriter: Fix whitespace
- Date: Wed, 29 Aug 2012 08:40:29 +0000 (UTC)
commit a56f250cb42786b4a7848095d23635a4e8d565a5
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Wed Aug 29 05:39:23 2012 -0300
mallardwriter: Fix whitespace
The whitespace should come included with the surrounding 'other'
tokens. We shouldn't need to add any.
giscanner/mallardwriter.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
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
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]