fnp
/
librarian.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
get rid of #!... -CA in subset.pl
[librarian.git]
/
librarian
/
epub.py
diff --git
a/librarian/epub.py
b/librarian/epub.py
index
2584029
..
649901e
100644
(file)
--- a/
librarian/epub.py
+++ b/
librarian/epub.py
@@
-211,7
+211,6
@@
class TOC(object):
def used_chars(element):
""" Lists characters used in an ETree Element """
- print (element.text or '') + (element.tail or '')
chars = set((element.text or '') + (element.tail or ''))
for child in element:
chars = chars.union(used_chars(child))