summaryrefslogtreecommitdiff
path: root/subbot.py
diff options
context:
space:
mode:
authorChristian Franke <nobody@nowhere.ws>2013-05-21 20:58:51 +0200
committerChristian Franke <nobody@nowhere.ws>2013-05-21 20:58:51 +0200
commita645cf73e2825aef54e307ea326afac73fde65b0 (patch)
tree1b461d7ae6e66085a99c64224abc211f1f0c1ac8 /subbot.py
parentf2afc8578b7aa6591e3ceaf1037cd3a128917787 (diff)
Use saner settings
Diffstat (limited to 'subbot.py')
-rw-r--r--subbot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/subbot.py b/subbot.py
index 78f3f6b..7e90c56 100644
--- a/subbot.py
+++ b/subbot.py
@@ -107,7 +107,7 @@ class TestBot(irc.bot.SingleServerIRCBot):
self.ircobj.execute_delayed(5, self.refresh)
def main(nickname, channel):
- bot = TestBot(channel, nickname, '172.22.24.1', 6667)
+ bot = TestBot(channel, nickname, 'irc.hackint.org', 6667)
bot.start()
if __name__ == "__main__":