From c05f171ba67fc5eb8f525f2a583cb429ec50014b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 23 Dec 2010 12:13:12 -0700 Subject: [PATCH] ... --- src/calibre/gui2/comments_editor.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/calibre/gui2/comments_editor.py b/src/calibre/gui2/comments_editor.py index 10df79073a..5d91492875 100644 --- a/src/calibre/gui2/comments_editor.py +++ b/src/calibre/gui2/comments_editor.py @@ -226,7 +226,6 @@ class EditorWidget(QWebView): # {{{ for body in root.xpath('//body'): if body.text: elems.append('

%s

'%body.text) - body.text = '' elems += [html.tostring(x, encoding=unicode) for x in body if x.tag not in ('script', 'style')]