diff options
author | lassulus <lassulus@googlemail.com> | 2014-01-11 13:19:58 +0100 |
---|---|---|
committer | lassulus <lassulus@googlemail.com> | 2014-01-11 13:19:58 +0100 |
commit | 73b356d61a14209dee77c6f314fd10a77d215f92 (patch) | |
tree | ac38edf2e8d76460f92b30e53848eda0607a21c2 /news | |
parent | f261e4db7600251607428f4d5316c9df72146fa2 (diff) |
news: fix missing newline
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: |