From 3f95aba6ee00ca77aaf45026c7f18441f148fc4b Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Mon, 14 Aug 2017 12:59:22 +0200 Subject: fix total in summary --- geldschieberbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'geldschieberbot.py') diff --git a/geldschieberbot.py b/geldschieberbot.py index 9626860..4b58b7c 100644 --- a/geldschieberbot.py +++ b/geldschieberbot.py @@ -35,7 +35,7 @@ def create_summary(user): if summary == "": summary = "\tAll fine :)\n" else: - summary = "\tBalance: " + str(total) + summary += "\tBalance: " + str(total) summary = user + ":\n" + summary return summary -- cgit v1.2.3