mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 03:00:23 -07:00
Merge pull request #1898 from silviud/fix_inventory_list_groups
Inventory class - lambda fails on attribute access - g.name is a string not the group obje...
This commit is contained in:
commit
6f9099c51d
1 changed files with 1 additions and 1 deletions
|
@ -296,7 +296,7 @@ class Inventory(object):
|
||||||
return [ h.name for h in self.get_hosts(pattern) ]
|
return [ h.name for h in self.get_hosts(pattern) ]
|
||||||
|
|
||||||
def list_groups(self):
|
def list_groups(self):
|
||||||
return sorted([ g.name for g in self.groups ], key=lambda x: x.name)
|
return sorted([ g.name for g in self.groups ], key=lambda x: x)
|
||||||
|
|
||||||
# TODO: remove this function
|
# TODO: remove this function
|
||||||
def get_restriction(self):
|
def get_restriction(self):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue