aboutsummaryrefslogtreecommitdiffstats
path: root/src/util.py
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-02-28 21:21:54 +0100
committerMattias Andrée <maandree@operamail.com>2014-02-28 21:21:54 +0100
commit015bdb9e386ac2b0cef9a280f00cd81990e2b732 (patch)
tree15eddb9eea071d2952c691318b0213575d217592 /src/util.py
parentm (diff)
downloadxpybar-015bdb9e386ac2b0cef9a280f00cd81990e2b732.tar.gz
xpybar-015bdb9e386ac2b0cef9a280f00cd81990e2b732.tar.bz2
xpybar-015bdb9e386ac2b0cef9a280f00cd81990e2b732.tar.xz
add users
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/util.py')
-rw-r--r--src/util.py2
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