mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Replace Exception with GError in filtertreeview
This commit is contained in:
parent
cc85f00588
commit
3f4cfd5c88
1 changed files with 2 additions and 1 deletions
|
@ -39,6 +39,7 @@ import gtk
|
|||
import gtk.glade
|
||||
import pkg_resources
|
||||
import warnings
|
||||
from gobject import GError
|
||||
|
||||
import deluge.component as component
|
||||
import deluge.common
|
||||
|
@ -291,7 +292,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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue