From 73b356d61a14209dee77c6f314fd10a77d215f92 Mon Sep 17 00:00:00 2001 From: lassulus Date: Sat, 11 Jan 2014 13:19:58 +0100 Subject: news: fix missing newline --- news/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'news') 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: -- cgit v1.2.3