Merge "Fix invalid argument formatting in the exception message"

This commit is contained in:
Zuul 2020-11-25 12:02:29 +00:00 committed by Gerrit Code Review
commit 0719f06a6b
1 changed files with 1 additions and 1 deletions

View File

@ -344,7 +344,7 @@ def create_run_cmd(providers, inventories, traits):
elif "resource provider inventory list" in args[1]:
return pop_output(inventories)
else:
raise ValueError("{} not expected", args)
raise ValueError("{} not expected" % args)
return dummy_run_command