python3 - 2to3 + miscell obvious tweaks
[sfa.git] / sfa / planetlab / nodemanager.py
index db8bc0f..2e755d9 100644 (file)
@@ -1,5 +1,5 @@
 import tempfile
-import commands
+import subprocess
 import os
 
 
@@ -40,11 +40,11 @@ print s.%(method)s%(args)s"""  % locals()
             f.close()
             # make the file executeable
             chmod_cmd = "/bin/chmod 775 %(filename)s" % locals()
-            (status, output) = commands.getstatusoutput(chmod_cmd)
+            (status, output) = subprocess.getstatusoutput(chmod_cmd)
 
             # execute the commad as a slice with root NM privs
             cmd = 'su - %(sfa_slice)s -c "%(python)s %(scriptname)s"' % locals()
-            (status, output) = commands.getstatusoutput(cmd)
+            (status, output) = subprocess.getstatusoutput(cmd)
             return (status, output)
         finally:
             os.unlink(filename)