1
0
Fork 0

Fix compiling json files. (#6340)

This commit is contained in:
skullydazed 2019-07-15 15:12:35 -07:00 committed by GitHub
parent a25dd58bc5
commit 7d557a0514
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 8 deletions

View file

@ -63,7 +63,7 @@ def generate(keyboard, layout, layers):
layer_txt.append('\t[%s] = %s(%s)' % (layer_num, layout, layer_keys))
keymap = '\n'.join(layer_txt)
keymap_c = template(keyboard, keymap)
keymap_c = template(keyboard)
return keymap_c.replace('__KEYMAP_GOES_HERE__', keymap)