diff options
Diffstat (limited to 'news')
-rwxr-xr-x | news/controller.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/news/controller.py b/news/controller.py index 4a8fd3bc..c0016cc8 100755 --- a/news/controller.py +++ b/news/controller.py @@ -108,7 +108,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 += 'lastnew: ' + bots[args[1]].lastnew.isoformat() + output_buffer += 'lastnew: ' + bots[args[1]].lastnew.isoformat() + '\n' output_buffer += 'rssurl: ' + bots[args[1]].url return output_buffer else: |