sort slots by name in the plist files.

This commit is contained in:
Kelvin Sherlock
2021-03-19 17:23:41 -04:00
parent fe0d690f87
commit 2a0462cc41
49 changed files with 45655 additions and 45650 deletions

View File

@@ -322,7 +322,12 @@ def make_device_slots(machine):
def make_devices():
devices = []
for name, m in submachines.items():
# alphabetically so it doesn't change.
names = list(submachines.keys())
names.sort()
for name in names:
m = submachines[name]
# print(" {}".format(name))
slots = make_device_slots(m)
if slots: