summaryrefslogtreecommitdiffstats
path: root/news
diff options
context:
space:
mode:
authorlassulus <lassulus@googlemail.com>2014-01-11 13:19:58 +0100
committerlassulus <lassulus@googlemail.com>2014-01-11 13:19:58 +0100
commit73b356d61a14209dee77c6f314fd10a77d215f92 (patch)
treeac38edf2e8d76460f92b30e53848eda0607a21c2 /news
parentf261e4db7600251607428f4d5316c9df72146fa2 (diff)
news: fix missing newline
Diffstat (limited to 'news')
-rwxr-xr-xnews/controller.py2
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: