Fix whitespace

(imported from commit 27ad5cda6ce439f81fb0ab231ef43303f2d70736)
This commit is contained in:
Zev Benjamin
2013-06-04 18:55:30 -04:00
parent 0378c43dc6
commit 4bf3cf1c67

View File

@@ -36,7 +36,7 @@ def chunkize(text, in_tag):
if start != idx:
chunks.append(('tag' if in_tag else 'text', text[start:idx]))
return chunks, in_tag
def highlight_chunks(chunks, highlight_func):
retval = ''
for type, text in chunks: