diff options
Diffstat (limited to 'helpcontent2/to-wiki')
-rwxr-xr-x | helpcontent2/to-wiki/wikiconv2.py | 4 |
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): |