1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge branch 'devel' of https://github.com/pieteravonts/ansible into pieteravonts-devel

This commit is contained in:
James Cammarata 2013-09-20 12:14:21 -05:00
commit 7272aa0347

View file

@ -89,7 +89,10 @@ def unsubscribe_channels(channels, client, session, sysname, sys_id):
def base_channels(client, session, sys_id):
basechan = client.channel.software.listSystemChannels(session, sys_id)
chans = [item['channel_label'] for item in basechan]
try:
chans = [item['label'] for item in basechan]
except KeyError:
chans = [item['channel_label'] for item in basechan]
return chans
# ------------------------------------------------------- #