diff options
Diffstat (limited to 'sleekxmpp/plugins/jobs.py')
-rw-r--r-- | sleekxmpp/plugins/jobs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/jobs.py b/sleekxmpp/plugins/jobs.py index 5ccfe271..cb9deba8 100644 --- a/sleekxmpp/plugins/jobs.py +++ b/sleekxmpp/plugins/jobs.py @@ -43,7 +43,7 @@ class jobs(base.base_plugin): iq['psstate']['payload'] = state result = iq.send() if result is None or type(result) == bool or result['type'] != 'result': - log.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 |