Commit eff1f762 authored by Fred Drake's avatar Fred Drake

clean_title(): Remove debugging prints.

parent ac77b79d
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment