aboutsummaryrefslogtreecommitdiffstats
path: root/__init__.py
diff options
context:
space:
mode:
authorkongr45gpen <electrovesta@gmail.com>2014-04-25 16:18:15 +0300
committerkongr45gpen <electrovesta@gmail.com>2014-04-25 16:18:15 +0300
commit59aa66b0b8e1e17255effc3a4a6e32994be8d177 (patch)
treed795e500931c29f4f516489eb654cd08b6bd0720 /__init__.py
parent29f8b71c828f1c1d423e1f9f032db3c574eb499a (diff)
downloadsupybot_github-59aa66b0b8e1e17255effc3a4a6e32994be8d177.tar.gz
supybot_github-59aa66b0b8e1e17255effc3a4a6e32994be8d177.tar.bz2
supybot_github-59aa66b0b8e1e17255effc3a4a6e32994be8d177.zip
Add basic status message handler (fixes #3)
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/__init__.py b/__init__.py
index 435c2af..9a47fe9 100644
--- a/__init__.py
+++ b/__init__.py
@@ -29,14 +29,19 @@ reload(plugin) # In case we're being reloaded.
# reloaded when this plugin is reloaded. Don't forget to import them as well!
import local.handler.GithubHandler as RequestHandler
import local.handler.PushHandler
+import local.handler.WikiHandler
+import local.handler.IssueHandler
+import local.handler.StatusHandler
+import local.handler.IssueCommentHandler
import local.utility
reload(RequestHandler)
reload(local.handler.PushHandler)
+reload(local.handler.WikiHandler)
+reload(local.handler.IssueHandler)
+reload(local.handler.StatusHandler)
+reload(local.handler.IssueCommentHandler)
reload(local.utility)
-print "PushHandler reloaded"
-
-
if world.testing:
import test

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