Fix indents.

This commit is contained in:
John Schember 2011-01-06 20:51:28 -05:00
parent 1786820728
commit b5599f8ff2

View File

@ -51,16 +51,16 @@ def chap_head(match):
chap = match.group('chap') chap = match.group('chap')
title = match.group('title') title = match.group('title')
if not title: if not title:
return '<h1>'+chap+'</h1><br/>\n' return '<h1>'+chap+'</h1><br/>\n'
else: else:
return '<h1>'+chap+'</h1>\n<h3>'+title+'</h3>\n' return '<h1>'+chap+'</h1>\n<h3>'+title+'</h3>\n'
def wrap_lines(match): def wrap_lines(match):
ital = match.group('ital') ital = match.group('ital')
if not ital: if not ital:
return ' ' return ' '
else: else:
return ital+' ' return ital+' '
class DocAnalysis(object): class DocAnalysis(object):
''' '''
@ -191,7 +191,7 @@ class Dehyphenator(object):
dehyphenated = unicode(firsthalf) + unicode(secondhalf) dehyphenated = unicode(firsthalf) + unicode(secondhalf)
lookupword = self.removesuffixes.sub('', dehyphenated) lookupword = self.removesuffixes.sub('', dehyphenated)
if self.prefixes.match(firsthalf) is None: if self.prefixes.match(firsthalf) is None:
lookupword = self.removeprefix.sub('', lookupword) lookupword = self.removeprefix.sub('', lookupword)
#print "lookup word is: "+str(lookupword)+", orig is: " + str(hyphenated) #print "lookup word is: "+str(lookupword)+", orig is: " + str(hyphenated)
try: try:
searchresult = self.html.find(lookupword.lower()) searchresult = self.html.find(lookupword.lower())