forked from mirrors/qmk_userspace
fix keyboards with apostrophes in their names
This commit is contained in:
parent
5b2feecdf3
commit
6daa204363
2 changed files with 3 additions and 3 deletions
|
@ -345,7 +345,7 @@ def _merge_layouts(info_data, new_info_data):
|
|||
else:
|
||||
# Pull in layouts that have matrix data
|
||||
missing_matrix = False
|
||||
for key in layout_json['layout']:
|
||||
for key in layout_json.get('layout', {}):
|
||||
if 'matrix' not in key:
|
||||
missing_matrix = True
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue