diff options
| author | Guillaume Horel <guillaume.horel@gmail.com> | 2010-11-23 22:52:48 -0500 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@gmail.com> | 2010-11-23 22:52:48 -0500 |
| commit | 217835b3adddedc9e8c501e8868d0440509ba1d5 (patch) | |
| tree | 87ca06cceaf5af8a6d18fb57b65143cb784fb123 /sleekxmpp/plugins/jobs.py | |
| parent | a5b4d8b2d4cda356afddcdab4864d27e165237f7 (diff) | |
| download | alias-217835b3adddedc9e8c501e8868d0440509ba1d5.tar.gz | |
Update to latest version of sleekxmpp
this fixes the bug with service discovery
Diffstat (limited to 'sleekxmpp/plugins/jobs.py')
| -rw-r--r-- | sleekxmpp/plugins/jobs.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sleekxmpp/plugins/jobs.py b/sleekxmpp/plugins/jobs.py index c52e524..0b93d62 100644 --- a/sleekxmpp/plugins/jobs.py +++ b/sleekxmpp/plugins/jobs.py @@ -3,15 +3,19 @@ import logging from xml.etree import cElementTree as ET import types + +log = logging.getLogger(__name__) + + class jobs(base.base_plugin): def plugin_init(self): self.xep = 'pubsubjob' self.description = "Job distribution over Pubsub" - + def post_init(self): pass #TODO add event - + def createJobNode(self, host, jid, node, config=None): pass @@ -40,7 +44,7 @@ class jobs(base.base_plugin): iq['psstate']['payload'] = state result = iq.send() if result is None or type(result) == types.BooleanType or result['type'] != 'result': - logging.error("Unable to change %s:%s to %s" % (node, jobid, state)) + log.error("Unable to change %s:%s to %s" % (node, jobid, state)) return False return True |
