Skip to content

Commit

Permalink
Fix typo in get_git_version() (qmk#12182)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored Mar 9, 2021
1 parent 24b621d commit b60b485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/qmk/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def get_git_version(repo_dir='.', check_dir='.'):
return git_describe.stdout.strip()

else:
cli.args.warn(f'"{" ".join(git_describe_cmd)}" returned error code {git_describe.returncode}')
cli.log.warn(f'"{" ".join(git_describe_cmd)}" returned error code {git_describe.returncode}')
print(git_describe.stderr)
return strftime(time_fmt)

Expand Down

0 comments on commit b60b485

Please sign in to comment.