diff options
Diffstat (limited to 'src/util.py')
-rw-r--r-- | src/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.py b/src/util.py index d12d3b2..25aac1f 100644 --- a/src/util.py +++ b/src/util.py @@ -55,6 +55,6 @@ def spawn(*command): @param command:*str The command line @return :istream The process's stdout ''' - proc = process.Popen(list(command), stderr = sys.stderr, stdout = PIPE) + proc = subprocess.Popen(list(command), stderr = sys.stderr, stdout = subprocess.PIPE) return proc.stdout |