mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 16:54:28 +02:00
Fix metadata comments as text bug.
This commit is contained in:
parent
7c0aebdfa6
commit
86b7ac2453
1 changed files with 1 additions and 1 deletions
|
|
@ -403,7 +403,7 @@ def get_results():
|
|||
result.identify_plugin = plugin
|
||||
if msprefs['txt_comments']:
|
||||
if plugin.has_html_comments and result.comments:
|
||||
result.comments = html2text(r.comments)
|
||||
result.comments = html2text(result.comments)
|
||||
|
||||
log('The identify phase took %.2f seconds'%(time.time() - start_time))
|
||||
log('The longest time (%f) was taken by:'%longest, lp)
|
||||
|
|
|
|||
Loading…
Reference in a new issue