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:
Florent Le Coz 2011-02-09 09:48:45 +08:00 committed by Lance Stout
parent 4b71fba64c
commit 72ead3d598

View file

@ -562,7 +562,7 @@ class RemoteSession(object):
iq.send()
return future.get_value(30)
else:
print "[RemoteSession] _call_remote %s" % callback
log.debug("[RemoteSession] _call_remote %s" % callback)
self._register_callback(pid, callback)
iq.send()