diff options
Diffstat (limited to 'ircbot/contoller.py')
-rwxr-xr-x | ircbot/contoller.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ircbot/contoller.py b/ircbot/contoller.py index dc1663c9..7964708e 100755 --- a/ircbot/contoller.py +++ b/ircbot/contoller.py @@ -36,14 +36,15 @@ class NewsBot(irc.bot.SingleServerIRCBot): sleep(1) def on_privmsg(self, connection, event): + answer = self.read_message(args_array) + self.send(answer) + + def on_pubmsg(self, connection, event): args_array = event.arguments[0].split() if args_array[0][:-1]==self.name: answer = self.read_message(args_array[1:]) self.send(answer) - def on_pubmsg(self, connection, event): - self.on_privmsg(connection, event) - def read_message(self, args): try: if args[0] in [x for x in commands.__dict__.keys() if x.find('_')]: @@ -125,7 +126,7 @@ class commands(): for data in ['title', 'link', 'updated']: if data in bots[args[1]].feed.feed: output_buffer += data + ': ' + bots[args[1]].feed.feed[data] + '\n' - output_buffer += 'lastpull: ' + bots[args[1]].lastpull.isoformat() + output_buffer += 'lastnew: ' + bots[args[1]].lastnew.isoformat() return output_buffer else: return 'bot not found' |