Fix typo that broke metadata downloading if the user has the txt comments preference turned on

This commit is contained in:
Kovid Goyal 2011-04-23 08:12:31 -06:00
parent ae85da399a
commit 30f22861ba

View File

@ -412,7 +412,7 @@ def identify(log, abort, # {{{
if msprefs['txt_comments']:
for r in results:
if r.plugin.has_html_comments and r.comments:
if r.identify_plugin.has_html_comments and r.comments:
r.comments = html2text(r.comments)
max_tags = msprefs['max_tags']