forked from mirrors/qmk_firmware
kle2json: fix invocation error
resolves an issue while finding the file path TypeError: unsupported operand type(s) for +: 'PosixPath' and 'str'
This commit is contained in:
parent
6ec3cc029e
commit
a47915d2d2
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ def kle2json(cli):
|
||||||
# Replace layout in keyboard json
|
# Replace layout in keyboard json
|
||||||
keyboard = keyboard.replace('"LAYOUT_JSON_HERE"', layout)
|
keyboard = keyboard.replace('"LAYOUT_JSON_HERE"', layout)
|
||||||
# Write our info.json
|
# Write our info.json
|
||||||
file = open(out_path + "/info.json", "w")
|
file = open(out_path / "info.json", "w")
|
||||||
file.write(keyboard)
|
file.write(keyboard)
|
||||||
file.close()
|
file.close()
|
||||||
cli.log.info('Wrote out {fg_cyan}%s/info.json', out_path)
|
cli.log.info('Wrote out {fg_cyan}%s/info.json', out_path)
|
||||||
|
|
Loading…
Reference in a new issue