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:
|
try:
|
||||||
retcode, contents = run_with_tee(session, args)
|
retcode, contents = run_with_tee(session, args)
|
||||||
except FileNotFoundError as e:
|
except FileNotFoundError as e:
|
||||||
error = MissingCommand(e.args[0])
|
error = MissingCommand(args[0])
|
||||||
retcode = 1
|
retcode = 1
|
||||||
else:
|
else:
|
||||||
if retcode == 0:
|
if retcode == 0:
|
||||||
|
|
Loading…
Add table
Reference in a new issue