From eff1f7622aaa4d0ba180290f614e49543e05eef1 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 10 Mar 1998 14:33:27 +0000 Subject: clean_title(): Remove debugging prints. --- Doc/tools/toc2bkm.py | 2 -- 1 file changed, 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 -- cgit v0.12