summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcobbler/cobbler.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/cobbler/cobbler.py b/cobbler/cobbler.py
index f8b7d7f..43b96b1 100755
--- a/cobbler/cobbler.py
+++ b/cobbler/cobbler.py
@@ -147,6 +147,7 @@ class BootCLI:
def __list_names(self, collection):
names = [ x.name for x in collection]
+ names.sort() # sorted() is 2.4 only
for name in names:
print " %s" % name
return True