summaryrefslogtreecommitdiff
path: root/lib/runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/runner.py')
-rw-r--r--lib/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/runner.py b/lib/runner.py
index aaa3807..3290913 100644
--- a/lib/runner.py
+++ b/lib/runner.py
@@ -652,7 +652,7 @@ class Multipass:
universal_newlines=True,
)
if res.returncode != 0:
- raise RuntimeError("make info Failure")
+ raise RuntimeError(f"make info Failure. command = {command}")
return res.stdout.split("\n")
def _cached_info(self, opts=list()) -> list: