aboutsummaryrefslogtreecommitdiff
path: root/modules/join.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-12 15:44:50 +0100
committerGravatar jesopo2018-09-12 15:44:50 +0100
commit6db97c7df5833c1112571bb4fe5cf842a76d585b (patch)
treea00aefe9ef7f51871f65aadee06d3c82722d96b0 /modules/join.py
parentAdd missing argument to Utils._multi_replace calls in irc_lower (diff)
signature
join.py -> bot_channel.py, make the bot channel (default #bitbot) configurable
Diffstat (limited to 'modules/join.py')
-rw-r--r--modules/join.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/join.py b/modules/join.py
deleted file mode 100644
index 31a26873..00000000
--- a/modules/join.py
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-class Module(object):
- def __init__(self, bot, events, exports):
- events.on("received").on("numeric").on("001").hook(self.do_join)
-
- def do_join(self, event):
- event["server"].send_join("#bitbot")