fnp
/
librarian.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
text: use files, not filenames
[librarian.git]
/
scripts
/
book2txt
diff --git
a/scripts/book2txt
b/scripts/book2txt
index
2963816
..
d5e18c6
100755
(executable)
--- a/
scripts/book2txt
+++ b/
scripts/book2txt
@@
-38,7
+38,8
@@
if __name__ == '__main__':
output_filename = os.path.splitext(input_filename)[0] + '.txt'
try:
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' % {
wrapping=str(options.wrapping))
except ParseError, e:
print '%(file)s:%(name)s:%(message)s' % {
@@
-58,4
+59,4
@@
if __name__ == '__main__':
'etype': e.__class__.__name__,
'message': e.message,
}
'etype': e.__class__.__name__,
'message': e.message,
}
- raise
e
+ raise