From 3e732a0736805ac85ab0743f2e3c8cd4db32c8ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannes=20H=C3=B6ke?= Date: Sun, 22 Nov 2015 14:07:20 +0100 Subject: [PATCH] fix multiple additional arguments --- telegram/broadcaster.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/telegram/broadcaster.py b/telegram/broadcaster.py index 63f1379e9..dc044d9c8 100644 --- a/telegram/broadcaster.py +++ b/telegram/broadcaster.py @@ -577,7 +577,8 @@ class Broadcaster: if 'update_queue' in fargs: kwargs['update_queue'] = self.update_queue - elif 'args' in fargs: + + if 'args' in fargs: if isinstance(update, Update): args = update.message.text.split(' ')[1:] elif isinstance(update, str):