From 77ebaa9693c528852f194c280eda735618e53ff7 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Thu, 18 Nov 2021 15:26:18 +0100 Subject: fix attachment command --- geldschieberbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geldschieberbot.py b/geldschieberbot.py index b9bc338..ecaecb1 100644 --- a/geldschieberbot.py +++ b/geldschieberbot.py @@ -108,7 +108,7 @@ def to_euro(cents): def send(msg, attachment=None, cmd=send_cmd): if not quiet: if attachment: - cmd += f'-a {attachment}' + cmd += f' -a {attachment}' subprocess.run(cmd.split(' '), input=msg.encode(), check=False) -- cgit v1.2.3