summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Info.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Server/Info.py')
-rw-r--r--src/lib/Bcfg2/Server/Info.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/Bcfg2/Server/Info.py b/src/lib/Bcfg2/Server/Info.py
index d6fd3f723..64621aa53 100644
--- a/src/lib/Bcfg2/Server/Info.py
+++ b/src/lib/Bcfg2/Server/Info.py
@@ -563,9 +563,10 @@ class Showclient(InfoCmd):
print(group_fmt % ("", group, category))
if metadata.bundles:
- print(fmt % ("Bundles:", list(metadata.bundles)[0]))
- for bnd in sorted(list(metadata.bundles)[1:]):
- print(fmt % ("", bnd))
+ sorted_bundles = sorted(list(metadata.bundles))
+ print(fmt % ("Bundles:", sorted_bundles[0]))
+ for bnd in sorted_bundles[1:]:
+ print(fmt % ("", bnd))
if metadata.connectors:
print("Connector data")
print("=" * 80)