oops
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Tue, 7 Sep 2010 13:29:17 +0000 (15:29 +0200)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Tue, 7 Sep 2010 13:29:17 +0000 (15:29 +0200)
SfaData.py

index 922a0b5..6f8c9cc 100644 (file)
@@ -60,7 +60,7 @@ class SfaData:
         command = ["sfi.py", "-u", self.getUser(), "-a", self.getAuthority(), 
                    "-r", self.registry(), "-s", self.slicemgr(), "show", hrn]
         self.trace_command(command)
-        text = subprocess.Popen(command, stdout=PIPE).communicate()[0]
+        text = subprocess.Popen(command, stdout=subprocess.PIPE).communicate()[0]
         self.trace_end()
         return text
 
@@ -69,7 +69,7 @@ class SfaData:
         command=["sfi.py", "-u", self.getUser(), "-a", self.getAuthority(), 
                  "-r", self.registry(), "-s", self.slicemgr(), "list", hrn]
         self.trace_command(command)
-        text = subprocess.Popen(command, stdout=PIPE).communicate()[0]
+        text = subprocess.Popen(command, stdout=subprocess.PIPE).communicate()[0]
         self.trace_end()
         lines = text.split('\n')
         for line in lines: