From 127d98b6679fdb5ca6a6705b5bc8eddb9dd76497 Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Fri, 9 Nov 2012 09:39:43 -0800 Subject: [PATCH] Experimental change to story diffing. Adding spaces back in. --- utils/story_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/story_functions.py b/utils/story_functions.py index 6daa75906..da5697a23 100644 --- a/utils/story_functions.py +++ b/utils/story_functions.py @@ -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) \ No newline at end of file