X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=PLC%2FPOD.py;h=a5eddfd38b246649d625486640ec269f3b628fc7;hb=1d3540bd2ece27d91a2ec5843628c5fa38a25024;hp=41227d2b75e454a7b92057067d94ecb7e861218d;hpb=21d187714285d9818fd94509b015ba069facb7ef;p=plcapi.git diff --git a/PLC/POD.py b/PLC/POD.py index 41227d2..a5eddfd 100644 --- a/PLC/POD.py +++ b/PLC/POD.py @@ -66,14 +66,14 @@ def _construct(id, data): def icmp_pod(host,key): uid = os.getuid() - if uid <> 0: - print "must be root to send icmp pod" + if uid != 0: + print("must be root to send icmp pod") return s = socket(AF_INET, SOCK_RAW, getprotobyname("icmp")) packet = _construct(0, key) # make a ping packet addr = (host,1) - print 'pod sending icmp-based reboot request to %s' % host + print('pod sending icmp-based reboot request to %s' % host) for i in range(1,10): s.sendto(packet, addr) @@ -82,7 +82,7 @@ def udp_pod(host,key,fromaddr=('', 0)): s = socket(AF_INET, SOCK_DGRAM) s.bind(fromaddr) packet = key - print 'pod sending udp-based reboot request to %s' % host + print('pod sending udp-based reboot request to %s' % host) for i in range(1,10): s.sendto(packet, addr)