summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-03-10 08:36:39 +1100
committerGitHub <noreply@github.com>2021-03-10 08:36:39 +1100
commitaed8bace97646af7e90e3a46f48aa3a83784df17 (patch)
tree89aecfc00fda32d2c9f816cfbb09eac446592252 /lib
parent4f5e0dd3254de14ea86c7a4644e97a3a1077b40e (diff)
Fix typo in `get_git_version()` (#12182)
Diffstat (limited to 'lib')
-rw-r--r--lib/python/qmk/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/commands.py b/lib/python/qmk/commands.py
index 3c6f0d001d..6a57c1ff5d 100644
--- a/lib/python/qmk/commands.py
+++ b/lib/python/qmk/commands.py
@@ -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)