aboutsummaryrefslogtreecommitdiffstats
path: root/__init__.py
diff options
context:
space:
mode:
authorkongr45gpen <electrovesta@gmail.com>2016-09-16 14:14:14 +0300
committerkongr45gpen <electrovesta@gmail.com>2016-09-16 14:29:53 +0300
commit3902f3b980c0e2a885b965b4f2503244c3e68782 (patch)
tree11c8fc4d8e2272ae2a4323f9cf12711f5e35a79c /__init__.py
parent8a37f308903f3927b7442a38695ee0a99982a53c (diff)
downloadsupybot_github-3902f3b980c0e2a885b965b4f2503244c3e68782.tar.gz
supybot_github-3902f3b980c0e2a885b965b4f2503244c3e68782.tar.bz2
supybot_github-3902f3b980c0e2a885b965b4f2503244c3e68782.zip
Improve HTTP response
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/__init__.py b/__init__.py
index 52060c2..953dd50 100644
--- a/__init__.py
+++ b/__init__.py
@@ -28,6 +28,8 @@ import plugin
reload(plugin) # In case we're being reloaded.
# 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!
+import local.globals
+import local.utility
import local.handler.GithubHandler as RequestHandler
import local.handler.PingHandler
import local.handler.PushHandler
@@ -42,8 +44,8 @@ import local.handler.IssueCommentHandler
import local.theme.Theme
import local.theme.DefaultTheme
import local.theme.CompactTheme
-import local.utility
-import local.globals
+reload(local.globals)
+reload(local.utility)
reload(RequestHandler)
reload(local.handler.PingHandler)
reload(local.handler.PushHandler)
@@ -58,8 +60,6 @@ reload(local.handler.IssueCommentHandler)
reload(local.theme.Theme)
reload(local.theme.DefaultTheme)
reload(local.theme.CompactTheme)
-reload(local.utility)
-reload(local.globals)
local.globals.init()

© 2014-2024 Faster IT GmbH | imprint | privacy policy