X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/f8e5f031c04122d65d1066077be3920ae95518ae..6d65ed2b0c5f9f6df14de211ea2bf1de0a5dac70:/scripts/book2txt diff --git a/scripts/book2txt b/scripts/book2txt index 55482a6..d5e18c6 100755 --- a/scripts/book2txt +++ b/scripts/book2txt @@ -1,4 +1,9 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# This file is part of Librarian, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# import os import optparse @@ -33,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' % { @@ -53,4 +59,4 @@ if __name__ == '__main__': 'etype': e.__class__.__name__, 'message': e.message, } - raise e + raise