summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lassulus@googlemail.com>2014-01-04 03:06:31 +0100
committerlassulus <lassulus@googlemail.com>2014-01-04 03:06:31 +0100
commitb537b19d827f49f86f29dec21116dd960721efb4 (patch)
treebbe2c6a59819cc7e4dcb47eb87de3ab4d0382286
parent0c2b0de26ab4190001f89345c52b049bbf701a20 (diff)
ircbot: fixed server ip
-rwxr-xr-xircbot/bot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ircbot/bot.py b/ircbot/bot.py
index 25a1014f..c9a7d027 100755
--- a/ircbot/bot.py
+++ b/ircbot/bot.py
@@ -6,7 +6,7 @@ import math
from time import sleep
class TestBot(irc.bot.SingleServerIRCBot):
- def __init__(self, rss, name, server='10.243.231.66', port=6667, chan='#news', timeout=60):
+ def __init__(self, rss, name, server='ire', port=6667, chan='#news', timeout=60):
irc.bot.SingleServerIRCBot.__init__(self, [(server, port)], name, name)
self.url = rss
self.feed = feedparser.parse(self.url)