Fix incorrect argument
This commit is contained in:
parent
42ccbe7499
commit
73f290b518
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue