removed debug statements

This commit is contained in:
ldolse 2011-01-07 02:34:52 +08:00
parent 93bd1df11a
commit 482c15e16e

View File

@ -117,7 +117,7 @@ class PreProcessor(object):
self.min_chapters = 1 self.min_chapters = 1
if wordcount > 7000: if wordcount > 7000:
self.min_chapters = wordcount / 7000 self.min_chapters = wordcount / 7000
print "minimum chapters required are: "+str(self.min_chapters) #print "minimum chapters required are: "+str(self.min_chapters)
heading = re.compile('<h[1-3][^>]*>', re.IGNORECASE) heading = re.compile('<h[1-3][^>]*>', re.IGNORECASE)
self.html_preprocess_sections = len(heading.findall(html)) self.html_preprocess_sections = len(heading.findall(html))
self.log("found " + unicode(self.html_preprocess_sections) + " pre-existing headings") self.log("found " + unicode(self.html_preprocess_sections) + " pre-existing headings")
@ -180,7 +180,7 @@ class PreProcessor(object):
words_per_chptr = wordcount words_per_chptr = wordcount
if words_per_chptr > 0 and self.html_preprocess_sections > 0: if words_per_chptr > 0 and self.html_preprocess_sections > 0:
words_per_chptr = wordcount / self.html_preprocess_sections words_per_chptr = wordcount / self.html_preprocess_sections
print "Total wordcount is: "+ str(wordcount)+", Average words per section is: "+str(words_per_chptr)+", Marked up "+str(self.html_preprocess_sections)+" chapters" self.log("Total wordcount is: "+ str(wordcount)+", Average words per section is: "+str(words_per_chptr)+", Marked up "+str(self.html_preprocess_sections)+" chapters")
return html return html