mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
changed deprecated channel_label attribute
This commit is contained in:
parent
a5ee6ff1e5
commit
60d8f92b3c
1 changed files with 4 additions and 1 deletions
|
@ -89,7 +89,10 @@ def unsubscribe_channels(channels, client, session, sysname, sys_id):
|
||||||
|
|
||||||
def base_channels(client, session, sys_id):
|
def base_channels(client, session, sys_id):
|
||||||
basechan = client.channel.software.listSystemChannels(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
|
return chans
|
||||||
|
|
||||||
# ------------------------------------------------------- #
|
# ------------------------------------------------------- #
|
||||||
|
|
Loading…
Reference in a new issue