Replace the print statement by a log.debug call
This print syntax is deprecated in python3, so the plugin was working only with python2
This commit is contained in:
parent
4b71fba64c
commit
72ead3d598
1 changed files with 1 additions and 1 deletions
|
@ -562,7 +562,7 @@ class RemoteSession(object):
|
||||||
iq.send()
|
iq.send()
|
||||||
return future.get_value(30)
|
return future.get_value(30)
|
||||||
else:
|
else:
|
||||||
print "[RemoteSession] _call_remote %s" % callback
|
log.debug("[RemoteSession] _call_remote %s" % callback)
|
||||||
self._register_callback(pid, callback)
|
self._register_callback(pid, callback)
|
||||||
iq.send()
|
iq.send()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue