From eee96d14b3e8d6fb1aee3634014d0a1f38579f07 Mon Sep 17 00:00:00 2001 From: chris Date: Thu, 5 Nov 2020 16:37:01 +0100 Subject: [PATCH] line breaks --- xmppbot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xmppbot.py b/xmppbot.py index a789267..83e3e94 100644 --- a/xmppbot.py +++ b/xmppbot.py @@ -33,10 +33,10 @@ class BudgetBot(object): reply = "Invalid budget name" else: reply = "Budget *{}*\n".format(budget[0]['name']) - reply += " Available current month: {:.2f}".format(budget[0].get('limit')) - reply += " Average per day: {:.2f}".format(budget[0].get('average_per_day')) + reply += " Available current month: {:.2f}\n".format(budget[0].get('limit')) + reply += " Average per day: {:.2f}\n".format(budget[0].get('average_per_day')) reply += " Spent: {:.2f}\n".format(budget[0].get('spent')) - reply += " Spent per day: {:.2f}".format(budget[0].get('spent_per_day')) + reply += " Spent per day: {:.2f}\n".format(budget[0].get('spent_per_day')) reply += " Remaining: {:.2f}\n".format(budget[0].get('remaining')) reply += " Remaining per day: {:.2f}".format(budget[0].get('remaining_per_day')) else: