From e75ddc7a369834022dcdb02b3079945a5e6a2f2c Mon Sep 17 00:00:00 2001 From: Tomas Kopecek Date: May 21 2019 14:04:59 +0000 Subject: fix channel separator --- diff --git a/cli/koji_cli/commands.py b/cli/koji_cli/commands.py index 6faa10a..02c3f6b 100644 --- a/cli/koji_cli/commands.py +++ b/cli/koji_cli/commands.py @@ -2816,7 +2816,7 @@ def anon_handle_list_hosts(goptions, session, args): for host in hosts: session.listChannels(host['id']) for host, [channels] in zip(hosts, session.multiCall()): - host['channels'] = ', '.join(sorted([c['name'] for c in channels])) + host['channels'] = ','.join(sorted([c['name'] for c in channels])) longest_host = max([len(h['name']) for h in hosts]) if not options.quiet: