summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream/scheduler.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2013-04-23 11:09:04 -0700
committerLance Stout <lancestout@gmail.com>2013-04-23 11:09:04 -0700
commit8ec18bdb2c7335356799127941cb52ca6b754a01 (patch)
tree8df91ec31754ee491fc2b090a39e8b119b400a76 /sleekxmpp/xmlstream/scheduler.py
parent3c3cd65235fc5153acd2d99be0170d6bf0bbb385 (diff)
downloadslixmpp-8ec18bdb2c7335356799127941cb52ca6b754a01.tar.gz
slixmpp-8ec18bdb2c7335356799127941cb52ca6b754a01.tar.bz2
slixmpp-8ec18bdb2c7335356799127941cb52ca6b754a01.tar.xz
slixmpp-8ec18bdb2c7335356799127941cb52ca6b754a01.zip
Carry scheduled kwargs all the way
Diffstat (limited to 'sleekxmpp/xmlstream/scheduler.py')
-rw-r--r--sleekxmpp/xmlstream/scheduler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/scheduler.py b/sleekxmpp/xmlstream/scheduler.py
index b3e50983..bef8f5e5 100644
--- a/sleekxmpp/xmlstream/scheduler.py
+++ b/sleekxmpp/xmlstream/scheduler.py
@@ -76,7 +76,7 @@ class Task(object):
"""
if self.qpointer is not None:
self.qpointer.put(('schedule', self.callback,
- self.args, self.name))
+ self.args, self.kwargs, self.name))
else:
self.callback(*self.args, **self.kwargs)
self.reset()