mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-23 19:01:26 -07:00
Fix IOS TypeError * if flags are None, then ' '.join(flags) fails * fixed get_defaults_flag so that it returns a list, and ignores lines with white space Fixes #26918
This commit is contained in:
parent
0b5b5ec50a
commit
9f64e446c6
2 changed files with 4 additions and 4 deletions
|
@ -71,13 +71,13 @@ def get_defaults_flag(module):
|
|||
|
||||
commands = set()
|
||||
for line in out.splitlines():
|
||||
if line:
|
||||
if line.strip():
|
||||
commands.add(line.strip().split()[0])
|
||||
|
||||
if 'all' in commands:
|
||||
return 'all'
|
||||
return ['all']
|
||||
else:
|
||||
return 'full'
|
||||
return ['full']
|
||||
|
||||
|
||||
def get_config(module, flags=[]):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue