diff options
author | lassulus <lassulus@googlemail.com> | 2014-01-06 00:53:37 +0100 |
---|---|---|
committer | lassulus <lassulus@googlemail.com> | 2014-01-06 00:53:37 +0100 |
commit | f2adb4ea677d0651b89b63a9c59e44ff87bd63d0 (patch) | |
tree | 97973b52bff22ebed6a8a887f52a181841b16c50 /ircbot/contoller.py | |
parent | 020fab58ce23a4f61f82f94a2c3b804d659e9dcd (diff) |
ircbot: rename lastpull to lastnew
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' |