removed VnodeClient.popen

This commit is contained in:
Blake Harnden 2019-10-11 13:36:00 -07:00
parent fc7a161221
commit b5d71bab82
4 changed files with 3 additions and 32 deletions

View file

@ -222,7 +222,7 @@ def check_cmd(args, env=None, cwd=None, wait=True):
execute is not found
"""
args = split_args(args)
logging.info("command: %s", args)
logging.info("command cwd(%s) wait(%s): %s", cwd, wait, args)
try:
p = Popen(args, stdout=PIPE, stderr=PIPE, env=env, cwd=cwd)
if wait: