Browse Source

Fix merging community and base keymaps

Erovia 5 years ago
parent
commit
8ff72d9517
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/python/qmk/keymap.py

+ 1 - 1
lib/python/qmk/keymap.py

@@ -149,6 +149,6 @@ def list_keymaps(keyboard_name):
         if "LAYOUTS" in rules_mk:
             for layout in rules_mk["LAYOUTS"]["value"].split():
                 cl_base_path = os.path.join(os.getcwd(), "layouts", "community", layout) + os.path.sep
-                names = names + find_keymaps(cl_base_path, revision, community = True)
+                names = names.union(find_keymaps(cl_base_path, revision, community = True))
 
     return sorted(names)