Fix the error message for the generic run method at the shell package

parent a42ce250
...@@ -45,7 +45,7 @@ def run(command): ...@@ -45,7 +45,7 @@ def run(command):
return None return None
return lines[0].strip() return lines[0].strip()
except CalledProcessError as process_error: except CalledProcessError as process_error:
logging.error("Cannot clean the module: %s", logging.error("Cannot execute the shell command: %s",
process_error.output) process_error.output)
quit() quit()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment