mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 13:50:22 -07:00
fixed function signature
This commit is contained in:
parent
3db8070aa3
commit
ee840f3029
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ class InventoryDirectory(object):
|
||||||
if os.path.isdir(fullpath):
|
if os.path.isdir(fullpath):
|
||||||
parser = InventoryDirectory(loader=loader, filename=fullpath)
|
parser = InventoryDirectory(loader=loader, filename=fullpath)
|
||||||
else:
|
else:
|
||||||
parser = get_file_parser(fullpath, loader)
|
parser = get_file_parser(fullpath, self.groups, loader)
|
||||||
if parser is None:
|
if parser is None:
|
||||||
#FIXME: needs to use display
|
#FIXME: needs to use display
|
||||||
import warnings
|
import warnings
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue