summaryrefslogtreecommitdiff
path: root/helpcontent2/to-wiki/wikiconv2.py
diff options
context:
space:
mode:
Diffstat (limited to 'helpcontent2/to-wiki/wikiconv2.py')
-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):