X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/d7dcfa2e9d6d2c12bd68559050abbba84f28c44b..53acb1f3e125b31e3c0837a67bf0a4a9a29e4548:/scripts/book2txt diff --git a/scripts/book2txt b/scripts/book2txt index 2317688..d5e18c6 100755 --- a/scripts/book2txt +++ b/scripts/book2txt @@ -38,7 +38,8 @@ if __name__ == '__main__': output_filename = os.path.splitext(input_filename)[0] + '.txt' try: - text.transform(input_filename, output_filename, parse_dublincore=options.parse_dublincore, + output_file = open(output_filename, 'w') + text.transform(open(input_filename), output_file, parse_dublincore=options.parse_dublincore, wrapping=str(options.wrapping)) except ParseError, e: print '%(file)s:%(name)s:%(message)s' % {