From 53930e089809539abbd1a497dbcddb2dc8d5607b Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Mon, 3 May 2010 20:38:57 +0100 Subject: [PATCH] handle non-supported images/files in the icons folder --- deluge/ui/tracker_icons.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/deluge/ui/tracker_icons.py b/deluge/ui/tracker_icons.py index 168ebaa10..eb6f00c3c 100644 --- a/deluge/ui/tracker_icons.py +++ b/deluge/ui/tracker_icons.py @@ -142,7 +142,10 @@ class TrackerIcons(Component): for icon in os.listdir(self.dir): if icon != noIcon: host = icon_name_to_host(icon) - self.icons[host] = TrackerIcon(os.path.join(self.dir, icon)) + try: + self.icons[host] = TrackerIcon(os.path.join(self.dir, icon)) + except KeyError: + log.warning("invalid icon %s", icon) if noIcon: self.icons[None] = TrackerIcon(noIcon) else: @@ -479,6 +482,9 @@ def icon_name_to_host(icon): """ return icon.rpartition('.')[0] +MIME_MAP = { +} + def mimetype_to_ext(mimetype): """ Given a mimetype, returns the appropriate filename extension