summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2020-03-12 11:17:43 -0700
committerFlorian Didron <fdidron@users.noreply.github.com>2020-06-12 17:00:27 +0900
commit248655eedc0335b90baef07bcc0ba85d633b52c4 (patch)
tree46c9fb0237d64eb992af483708b6f7b48d0ead80
parentacae5fa8f31de0b1209be1c6faba16da8398b648 (diff)
use qmk.path.normpath to locate the output file.
-rwxr-xr-xlib/python/qmk/cli/json2c.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/python/qmk/cli/json2c.py b/lib/python/qmk/cli/json2c.py
index 9abf03d8a1..46c4d04bb7 100755
--- a/lib/python/qmk/cli/json2c.py
+++ b/lib/python/qmk/cli/json2c.py
@@ -1,7 +1,6 @@
"""Generate a keymap.c from a configurator export.
"""
import json
-from pathlib import Path
from milc import cli
@@ -9,7 +8,7 @@ import qmk.keymap
import qmk.path
-@cli.argument('-o', '--output', arg_only=True, type=Path, help='File to write to')
+@cli.argument('-o', '--output', arg_only=True, type=qmk.path.normpath, help='File to write to')
@cli.argument('-q', '--quiet', arg_only=True, action='store_true', help="Quiet mode, only output error messages")
@cli.argument('filename', arg_only=True, help='Configurator JSON file')
@cli.subcommand('Creates a keymap.c from a QMK Configurator export.')