aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'MgaRepo/util.py')
-rw-r--r--MgaRepo/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/MgaRepo/util.py b/MgaRepo/util.py
index c0566de..dfae85c 100644
--- a/MgaRepo/util.py
+++ b/MgaRepo/util.py
@@ -50,7 +50,7 @@ def execcmd(*cmd, **kwargs):
if verbose:
print("cmd: " + str(cmd).lstrip("(").rstrip(")").replace("', '", "' '"))
- proc = subprocess.Popen(cmdargs, shell=False, stdout=stdout,
+ proc = subprocess.Popen(cmdargs, shell=False, stdout=stdout, stdin=kwargs.get("stdin"),
stderr=stderr, env=env)
output = ""