Replace Exception with GError in filtertreeview

This commit is contained in:
Calum Lind 2013-02-17 18:36:57 +00:00
parent 1d9b550e35
commit 836178a0da
1 changed files with 2 additions and 1 deletions

View File

@ -38,6 +38,7 @@ import os
import gtk
import logging
import warnings
from gobject import GError
import deluge.component as component
import deluge.common
@ -294,7 +295,7 @@ class FilterTreeView(component.Component):
if pix:
try:
return gtk.gdk.pixbuf_new_from_file(deluge.common.get_pixmap("%s16.png" % pix))
except Exception, e:
except GError, e:
log.warning(e)
return self.get_transparent_pix(16, 16)