From 020fab58ce23a4f61f82f94a2c3b804d659e9dcd Mon Sep 17 00:00:00 2001 From: lassulus Date: Mon, 6 Jan 2014 00:42:42 +0100 Subject: ircbot: info with lastpull --- ircbot/contoller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ircbot/contoller.py') diff --git a/ircbot/contoller.py b/ircbot/contoller.py index b3938b63..dc1663c9 100755 --- a/ircbot/contoller.py +++ b/ircbot/contoller.py @@ -125,7 +125,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' - print(output_buffer) + output_buffer += 'lastpull: ' + bots[args[1]].lastpull.isoformat() return output_buffer else: return 'bot not found' -- cgit v1.2.3 From f2adb4ea677d0651b89b63a9c59e44ff87bd63d0 Mon Sep 17 00:00:00 2001 From: lassulus Date: Mon, 6 Jan 2014 00:53:37 +0100 Subject: ircbot: rename lastpull to lastnew --- ircbot/contoller.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'ircbot/contoller.py') 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' -- cgit v1.2.3