diff options
-rw-r--r-- | MgaRepo/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MgaRepo/util.py b/MgaRepo/util.py index 8ef7845..64faaa1 100644 --- a/MgaRepo/util.py +++ b/MgaRepo/util.py @@ -50,7 +50,7 @@ def execcmd(*cmd, **kwargs): verbose = config.getbool("global", "verbose", 0) if verbose: - print("cmd: " + str(cmd).lstrip("(").rstrip(")").replace("', '", "' '"))) + print("cmd: " + str(cmd).lstrip("(").rstrip(")").replace("', '", "' '")) proc = subprocess.Popen(cmdargs, shell=False, stdout=stdout, stderr=stderr, env=env) |