aboutsummaryrefslogtreecommitdiff
path: root/lib/python/qmk/cli/userspace/list.py
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2024-12-15 04:00:18 +0000
committerGitHub <noreply@github.com>2024-12-15 15:00:18 +1100
commit767dfbbd3f94dcddb2061cd8338dd166d985df9d (patch)
tree72c76a333f6fc92bf2adf322c6daf58e2b709053 /lib/python/qmk/cli/userspace/list.py
parent296e4539f5bfa8a23af6c48526a42dbc827a82eb (diff)
Resolve `cli.log.warn` warnings (#24551)
Diffstat (limited to 'lib/python/qmk/cli/userspace/list.py')
-rw-r--r--lib/python/qmk/cli/userspace/list.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/userspace/list.py b/lib/python/qmk/cli/userspace/list.py
index 9f83a14a2a..e902483b6b 100644
--- a/lib/python/qmk/cli/userspace/list.py
+++ b/lib/python/qmk/cli/userspace/list.py
@@ -66,4 +66,4 @@ def userspace_list(cli):
if is_all_keyboards(keyboard) or is_keymap_target(keyboard_folder(keyboard), keymap):
cli.log.info(f'Keyboard: {{fg_cyan}}{keyboard}{{fg_reset}}, keymap: {{fg_cyan}}{keymap}{{fg_reset}}{extra_args_str}')
else:
- cli.log.warn(f'Keyboard: {{fg_cyan}}{keyboard}{{fg_reset}}, keymap: {{fg_cyan}}{keymap}{{fg_reset}}{extra_args_str} -- not found!')
+ cli.log.warning(f'Keyboard: {{fg_cyan}}{keyboard}{{fg_reset}}, keymap: {{fg_cyan}}{keymap}{{fg_reset}}{extra_args_str} -- not found!')