diff --git a/deluge/ui/gtkui/coreconfig.py b/deluge/ui/coreconfig.py similarity index 95% rename from deluge/ui/gtkui/coreconfig.py rename to deluge/ui/coreconfig.py index 5a6cb49be..ba993d109 100644 --- a/deluge/ui/gtkui/coreconfig.py +++ b/deluge/ui/coreconfig.py @@ -30,7 +30,7 @@ from deluge.log import LOG as log class CoreConfig(component.Component): def __init__(self): log.debug("CoreConfig init..") - component.Component.__init__(self, "CoreConfig", ["Signals"]) + component.Component.__init__(self, "CoreConfig") self.config = {} client.register_event_handler("ConfigValueChangedEvent", self.on_configvaluechanged_event) diff --git a/deluge/ui/gtkui/gtkui.py b/deluge/ui/gtkui/gtkui.py index cc3d16104..22c27882d 100644 --- a/deluge/ui/gtkui/gtkui.py +++ b/deluge/ui/gtkui/gtkui.py @@ -54,7 +54,6 @@ from ipcinterface import IPCInterface from queuedtorrents import QueuedTorrents from addtorrentdialog import AddTorrentDialog -from coreconfig import CoreConfig import deluge.configmanager import deluge.common @@ -179,8 +178,6 @@ class GtkUI: self.statusbar = StatusBar() self.addtorrentdialog = AddTorrentDialog() - self.coreconfig = CoreConfig() - # Initalize the plugins self.plugins = PluginManager()