Actually fix VM sorting

Due to the executor the previous attempt did not work.
This commit is contained in:
Joshua Boniface 2022-08-12 17:46:29 -04:00
parent 2a21d48128
commit 881550b610
1 changed files with 1 additions and 1 deletions

View File

@ -1292,4 +1292,4 @@ def get_list(zkhandler, node, state, tag, limit, is_fuzzy=True, negate=False):
except Exception:
pass
return True, vm_data_list
return True, sorted(vm_data_list, key=lambda d: d["name"])