summaryrefslogtreecommitdiff
path: root/helpcontent2
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@suse.cz>2011-01-19 15:58:43 +0100
committerJan Holesovsky <kendy@suse.cz>2011-01-19 15:58:43 +0100
commitd141cd7ba4e704b75cb85b27ec13377c8b5baa1d (patch)
treeebb6e2b76d771dd5d9fc5f78577dac1b1f2a3dd2 /helpcontent2
parent2c4a94f2126d24662d7089d8ab754691c7a842f9 (diff)
wikihelp: No special paragraph for the Lang/OrigLang template.
Diffstat (limited to 'helpcontent2')
-rwxr-xr-xhelpcontent2/to-wiki/wikiconv2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/helpcontent2/to-wiki/wikiconv2.py b/helpcontent2/to-wiki/wikiconv2.py
index 5d0b7af57c..790bcaf843 100755
--- a/helpcontent2/to-wiki/wikiconv2.py
+++ b/helpcontent2/to-wiki/wikiconv2.py
@@ -610,11 +610,11 @@ class Ignore(ElementBase):
class OrigTitle(TextElementBase):
def __init__(self, attrs, parent):
- TextElementBase.__init__(self, attrs, parent, 'title', '{{OrigLang|', '}}\n\n', True)
+ TextElementBase.__init__(self, attrs, parent, 'title', '{{OrigLang|', '}}\n', True)
class Title(TextElementBase):
def __init__(self, attrs, parent, localized_title):
- TextElementBase.__init__(self, attrs, parent, 'title', '{{Lang|', '}}\n\n', True)
+ TextElementBase.__init__(self, attrs, parent, 'title', '{{Lang|', '}}\n', True)
self.localized_title = localized_title
def get_all(self):