diff options
-rwxr-xr-x | Doc/tools/toc2bkm.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Doc/tools/toc2bkm.py b/Doc/tools/toc2bkm.py index 616b79a..6ccda1f 100755 --- a/Doc/tools/toc2bkm.py +++ b/Doc/tools/toc2bkm.py @@ -86,14 +86,12 @@ def clean_title(title): m = title_rx.search(title, pos) if m: start = m.start() - print "found", `title[start:m.end()]` if title[start:start+15] != "\\textunderscore": title = title[:start] + title[m.end():] pos = start + 1 else: break title = string.translate(title, title_trans, "{}") - print `title` return title |