From 2a3071b8ea4204f2ac5c8ae38640dbe51ae46d69 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 20 May 2014 22:35:58 +0530 Subject: [PATCH] ... --- src/calibre/ebooks/docx/container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/ebooks/docx/container.py b/src/calibre/ebooks/docx/container.py index 835e4c4c0a..cd1a7b5e60 100644 --- a/src/calibre/ebooks/docx/container.py +++ b/src/calibre/ebooks/docx/container.py @@ -55,7 +55,7 @@ def read_doc_props(raw, mi): if desc: raw = etree.tostring(desc[0], method='text', encoding=unicode) raw = raw.replace('_x000d_', '') # Word 2007 mangles newlines in the summary - mi.comments = raw + mi.comments = raw.strip() langs = [] for lang in XPath('//dc:language')(root):