From 4d05a9dfc98170c04a4c9759c88134a9022869fe Mon Sep 17 00:00:00 2001 From: Zach Tibbitts Date: Tue, 25 Sep 2007 15:36:14 +0000 Subject: [PATCH] temp fix to prevent plugin from crashing deluge --- plugins/TorrentSearch/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/TorrentSearch/plugin.py b/plugins/TorrentSearch/plugin.py index 63507d3bf..76a26a408 100644 --- a/plugins/TorrentSearch/plugin.py +++ b/plugins/TorrentSearch/plugin.py @@ -44,7 +44,7 @@ class plugin_Search: f.close() glade = gtk.glade.XML(path + "/searchdlg.glade") self.dlg = glade.get_widget("search_dialog") - self.dlg.set_icon_from_file(deluge.common.get_pixmap("deluge32.png")) + # self.dlg.set_icon_from_file(deluge.common.get_pixmap("deluge32.png")) self.view = glade.get_widget("search_view") model = gtk.ListStore(str, str) self.view.set_model(model)