Skip to content

Commit

Permalink
fix(expand file args): Correctly print the expanded command
Browse files Browse the repository at this point in the history
  • Loading branch information
radimkarnis committed Jul 24, 2023
1 parent 8f37762 commit 2bea6f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esptool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ def expand_file_arguments(argv):
else:
new_args.append(arg)
if expanded:
print("esptool %s" % (" ".join(new_args[1:])))
print(f"esptool.py {' '.join(new_args)}")
return new_args
return argv

Expand Down

0 comments on commit 2bea6f4

Please sign in to comment.