diff options
Diffstat (limited to 'ircbot')
-rwxr-xr-x | ircbot/contoller.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ircbot/contoller.py b/ircbot/contoller.py index 26e88ca9..1d9347c3 100755 --- a/ircbot/contoller.py +++ b/ircbot/contoller.py @@ -61,7 +61,7 @@ class NewsBot(irc.bot.SingleServerIRCBot): class commands(): def add(args): - bot = rssbot.RssBot(args[2], args[1]) + bot = rssbot.RssBot(args[2], args[1], url_shortener=url_shortener) bots[args[1]] = bot bot.start() return "bot " + args[1] + " added" |