From 73f290b518a0665fb302789e203afdba38141e94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Thu, 5 Jul 2018 00:28:09 +0200 Subject: [PATCH] Fix incorrect argument --- gajim/common/modules/pep.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/common/modules/pep.py b/gajim/common/modules/pep.py index adc18e084..496254963 100644 --- a/gajim/common/modules/pep.py +++ b/gajim/common/modules/pep.py @@ -157,7 +157,7 @@ class AbstractPEPModule: def send_stored_publish(self): if self._stored_publish is not None: self._log.info('Send stored publish') - self.send(*self._stored_publish) + self.send(self._stored_publish) self._stored_publish = None def reset_stored_publish(self):