fixed: encodes boolean and double type values for the requests
[plcapi.git] / PLC / POD.py
index ed71236..41227d2 100644 (file)
@@ -1,5 +1,3 @@
-# $Id$
-# $URL$
 # Marc E. Fiuczynski <mef@cs.princeton.edu>
 # Copyright (C) 2004 The Trustees of Princeton University
 #
@@ -71,7 +69,7 @@ def icmp_pod(host,key):
     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)