clean_title(): Remove debugging prints.

This commit is contained in:
Fred Drake 1998-03-10 14:33:27 +00:00
parent ac77b79df6
commit eff1f7622a
1 changed files with 0 additions and 2 deletions

View File

@ -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