From: Bryan Bonvallet Date: Fri, 20 Dec 2013 00:23:01 +0000 (-0500) Subject: Reenabling santize_html now that it works. closes #160 X-Git-Tag: release-20150131~377 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e8edb856a532bd36c318ac044ed303869d30af7c;p=oweals%2Fkarmaworld.git Reenabling santize_html now that it works. closes #160 --- diff --git a/karmaworld/apps/notes/gdrive.py b/karmaworld/apps/notes/gdrive.py index e38ce3d..a813ed4 100644 --- a/karmaworld/apps/notes/gdrive.py +++ b/karmaworld/apps/notes/gdrive.py @@ -181,8 +181,7 @@ def convert_raw_document(raw_document): elif 'html' in content_dict and content_dict['html']: note.html = content_dict['html'] # before we save new html, sanitize a tags in note.html - #note.sanitize_html(save=False) - #FIXME: ^^^ disabled + note.sanitize_html(save=False) note.text = content_dict['text']