Browse Source

Fix typo in `get_git_version()` (#12182)

pull/12184/head
Ryan 3 years ago
committed by GitHub
parent
commit
aed8bace97
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/python/qmk/commands.py

+ 1
- 1
lib/python/qmk/commands.py View File

@ -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)


Loading…
Cancel
Save