From 4bd4c23a088b62708442c54ce941bae2e83160f9 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sat, 30 Apr 2016 16:50:04 -0700 Subject: [PATCH] networks: also remove coreplugin call --- plugins/networks.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/plugins/networks.py b/plugins/networks.py index 31ab808..24da096 100644 --- a/plugins/networks.py +++ b/plugins/networks.py @@ -6,7 +6,6 @@ sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) import threading -import coreplugin import utils import world from log import log @@ -56,10 +55,6 @@ def connect(irc, source, args): network.connection_thread = threading.Thread(target=network.connect) network.connection_thread.start() - # Call coreplugin's initialization method - log.debug('(%s) Calling main() function of coreplugin', irc.name) - coreplugin.main(irc) - # And the plugins we have too. for plugin in world.plugins.values(): if hasattr(plugin, 'main'):