diff options
author | lassulus <lassulus@googlemail.com> | 2014-01-06 00:42:42 +0100 |
---|---|---|
committer | lassulus <lassulus@googlemail.com> | 2014-01-06 00:42:42 +0100 |
commit | 020fab58ce23a4f61f82f94a2c3b804d659e9dcd (patch) | |
tree | 8c63b148c3e0dcab2c0ca4fdfbffb397ea561046 | |
parent | fbc2cf879ea76a590923fbcd4bf6150be0aad35c (diff) |
ircbot: info with lastpull
-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 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' |