mirror of https://github.com/kholia/OSX-KVM.git
bugfix: iterate the keys rather than KV pairs
This commit is contained in:
parent
a9b20147de
commit
86b05ee786
|
@ -462,7 +462,7 @@ def action_guess(args):
|
||||||
|
|
||||||
if len(supported) > 0:
|
if len(supported) > 0:
|
||||||
print(f'SUCCESS: MLB {mlb} looks supported for:')
|
print(f'SUCCESS: MLB {mlb} looks supported for:')
|
||||||
for model in supported.items():
|
for model in supported:
|
||||||
print(f'- {model}, up to {supported[model][0]}, default: {supported[model][1]}, latest: {supported[model][2]}')
|
print(f'- {model}, up to {supported[model][0]}, default: {supported[model][1]}, latest: {supported[model][2]}')
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue