diff options
author | QMK Bot <hello@qmk.fm> | 2022-08-31 05:20:33 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-08-31 05:20:33 +0000 |
commit | ba7030d216c677538093043d357d819a81549ff7 (patch) | |
tree | 559621b4e15702ec75654c8bbe67d6fa2ea30fb7 /lib | |
parent | c249afefc629c8b8b2c4e87c902e250dbd8c4fbb (diff) | |
parent | 6f804f76b4b1ce13245ea061df4bcb081b322f43 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib')
-rw-r--r-- | lib/python/qmk/cli/lint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/lint.py b/lib/python/qmk/cli/lint.py index 38b6457c43..6b077c250f 100644 --- a/lib/python/qmk/cli/lint.py +++ b/lib/python/qmk/cli/lint.py @@ -87,7 +87,7 @@ def keymap_check(kb, km): return ok # Additional checks - invalid_files = git_get_ignored_files(keymap_path.parent) + invalid_files = git_get_ignored_files(keymap_path.parent.as_posix()) for file in invalid_files: cli.log.error(f'{kb}/{km}: The file "{file}" should not exist!') ok = False |