mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-19 13:51:01 +00:00
Fix for previous commit adding warnings tags.
This commit is contained in:
parent
d60ae7911b
commit
671de9774e
1 changed files with 2 additions and 1 deletions
|
|
@ -91,7 +91,8 @@ class UrlItem (object):
|
|||
"""Store formatted tooltip texts from URL data."""
|
||||
# Display warnings in result tooltip
|
||||
if self.url_data.warnings:
|
||||
result = strformat.wrap(u"\n".join(self.url_data.warnings), 60)
|
||||
text = u"\n".join(x[1] for x in self.url_data.warnings)
|
||||
result = strformat.wrap(text, 60)
|
||||
else:
|
||||
result = u""
|
||||
self.tooltips = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue