From 7ed1e2c21ca5156f1d4672fffaae77d399f309cb Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@googlemail.com> Date: Sat, 4 Jul 2015 14:07:11 +0100 Subject: [PATCH] remove `reload(config)` this is no longer required and will cause double reloads. --- __init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/__init__.py b/__init__.py index c1bff19..a287601 100644 --- a/__init__.py +++ b/__init__.py @@ -30,7 +30,6 @@ from . import config from . import plugin from imp import reload # In case we're being reloaded. -reload(config) reload(plugin) # Add more reloads here if you add third-party modules and want them to be # reloaded when this plugin is reloaded. Don't forget to import them as well!