Fix arg.
This commit is contained in:
parent
65612f8234
commit
f174e7ce7b
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ def run_with_build_fixers(session: Session, args: List[str], fixers: List[BuildF
|
|||
try:
|
||||
retcode, contents = run_with_tee(session, args)
|
||||
except FileNotFoundError as e:
|
||||
error = MissingCommand(e.args[0])
|
||||
error = MissingCommand(args[0])
|
||||
retcode = 1
|
||||
else:
|
||||
if retcode == 0:
|
||||
|
|
Loading…
Add table
Reference in a new issue