aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/allocator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allocator.py b/src/allocator.py
index f530540..da666a9 100644
--- a/src/allocator.py
+++ b/src/allocator.py
@@ -38,7 +38,7 @@ class Allocator_Sources (object):
stdout = subprocess.PIPE if src.globalvars.verbosity < 2 else None
for cmd in cmds:
- p = subprocess.run(cmd, shell=True, cwd=cwd, stderr=stderr.PIPE,
+ p = subprocess.run(cmd, shell=True, cwd=cwd, stderr=subprocess.PIPE,
stdout=stdout)
if p.returncode: