[TXT] Newline after last line, update test.
[librarian.git] / librarian / text.py
index 9edfa62..0f3c0bb 100644 (file)
@@ -45,6 +45,8 @@ def transform(wldoc, flags=None, **options):
     if flags:
         for flag in flags:
             document.edoc.getroot().set(flag, 'yes')
+    if 'wrapping' in options:
+        options['wrapping'] = str(options['wrapping'])
 
     result = document.transform(style, **options)
 
@@ -93,5 +95,5 @@ def transform(wldoc, flags=None, **options):
         }).encode('utf-8')
     else:
         result = unicode(result).encode('utf-8')
-    return OutputFile.from_string("\r\n".join(result.splitlines()))
+    return OutputFile.from_string("\r\n".join(result.splitlines()) + "\r\n")