summaryrefslogtreecommitdiff
path: root/lib/python/qmk/cli/new/keyboard.py
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2022-02-15 01:42:58 +0000
committerGitHub <noreply@github.com>2022-02-15 01:42:58 +0000
commitb0621223bc53f634a28243b874379e8e157878fd (patch)
tree25849db31989959bd72181621da23346ad3fd4bf /lib/python/qmk/cli/new/keyboard.py
parentc9f192bae88ba4190d2e7f0bd560563b377f394d (diff)
Various fixes for new-keyboard (#16358)
Diffstat (limited to 'lib/python/qmk/cli/new/keyboard.py')
-rw-r--r--lib/python/qmk/cli/new/keyboard.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/new/keyboard.py b/lib/python/qmk/cli/new/keyboard.py
index 8596994d38..6fa9ad5b2c 100644
--- a/lib/python/qmk/cli/new/keyboard.py
+++ b/lib/python/qmk/cli/new/keyboard.py
@@ -208,7 +208,15 @@ def new_keyboard(cli):
cli.log.error(f'Keyboard {{fg_cyan}}{kb_name}{{fg_reset}} already exists! Please choose a different name.')
return 1
- tokens = {'YEAR': str(date.today().year), 'KEYBOARD': kb_name, 'USER_NAME': user_name, 'REAL_NAME': real_name, 'LAYOUT': default_layout, 'MCU': mcu, 'BOOTLOADER': bootloader}
+ tokens = { # Comment here is to force multiline formatting
+ 'YEAR': str(date.today().year),
+ 'KEYBOARD': kb_name,
+ 'USER_NAME': user_name,
+ 'REAL_NAME': real_name,
+ 'LAYOUT': default_layout,
+ 'MCU': mcu,
+ 'BOOTLOADER': bootloader
+ }
if cli.config.general.verbose:
cli.log.info("Creating keyboard with:")