Experimental change to story diffing. Adding spaces back in.

This commit is contained in:
Samuel Clay 2012-11-09 09:39:43 -08:00
parent 032419722b
commit 127d98b667

View file

@ -294,6 +294,6 @@ def htmldiff(old_html, new_html):
return new_html
result = htmldiff_tokens(old_html_tokens, new_html_tokens)
result = ''.join(result).strip()
result = ' '.join(result).strip()
return fixup_ins_del_tags(result)