diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2017-08-14 12:59:22 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2017-08-14 12:59:22 +0200 |
| commit | 3f95aba6ee00ca77aaf45026c7f18441f148fc4b (patch) | |
| tree | 0c72b71a09a23146915eb94874531f5b720b292f | |
| parent | f5fa89d7b5b857b649ea8d58846e37488d749d73 (diff) | |
| download | geldschieberbot-3f95aba6ee00ca77aaf45026c7f18441f148fc4b.tar.gz geldschieberbot-3f95aba6ee00ca77aaf45026c7f18441f148fc4b.zip | |
fix total in summary
| -rw-r--r-- | geldschieberbot.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
