Sort inventory entries diplayed with showall

This commit is contained in:
Uggla 2016-04-03 21:39:29 +02:00
parent 6b4450565e
commit a287469ff2

View File

@ -255,7 +255,7 @@ if __name__ == '__main__':
if(not inventory.get_managers()):
print("None")
else:
for manager in inventory.get_managers():
for manager in sorted(inventory.get_managers()):
print(manager)
if all is True:
info = inventory.get_manager_info(manager)