Return the noIcon for empty strings as well

This commit is contained in:
John Garland 2010-05-09 16:43:22 +10:00
parent 60f3d32de7
commit a4c6f4e8c9
1 changed files with 1 additions and 0 deletions

View File

@ -150,6 +150,7 @@ class TrackerIcons(Component):
self.icons[None] = TrackerIcon(noIcon)
else:
self.icons[None] = None
self.icons[''] = self.icons[None]
self.pending = {}
self.redirects = {}