From 2ea93cdcfd3895cd3e579dcd02122cbf3e3355e2 Mon Sep 17 00:00:00 2001 From: James Lu Date: Fri, 29 Sep 2017 15:50:49 -0700 Subject: [PATCH] Math: reload convertcore along with the plugin --- plugins/Math/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/Math/__init__.py b/plugins/Math/__init__.py index fb1abe29c..38ee8c9cb 100644 --- a/plugins/Math/__init__.py +++ b/plugins/Math/__init__.py @@ -47,7 +47,9 @@ __contributors__ = {supybot.Author('Keith Jones', 'kmj', ''): ['convert']} from . import config from . import plugin from imp import reload +from .local import convertcore reload(plugin) # In case we're being reloaded. +reload(convertcore) if world.testing: from . import test