Trying to make LinuxNS3Simulator to deploy remotely ....
[nepi.git] / src / nepi / util / execfuncs.py
index cd11bfa..98b9d73 100644 (file)
@@ -24,7 +24,6 @@ import subprocess
 def lexec(command, 
         user = None, 
         sudo = False,
-        stdin = None,
         env = None):
     """
     Executes a local command, returns ((stdout,stderr),process)
@@ -44,7 +43,6 @@ def lexec(command,
     proc = subprocess.Popen(command, shell=True, 
             stdout = subprocess.PIPE, 
             stderr = subprocess.PIPE)
-            #stdin  = stdin)
 
     out, err = proc.communicate()
     return ((out, err), proc)