mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 01:33:09 +00:00
file() function in python3 no longer exist, so use open() (#17303)
This commit is contained in:
committed by
Toshio Kuratomi
parent
9245c786db
commit
adcb87f781
@@ -49,7 +49,7 @@ class ActionModule(ActionBase):
|
||||
if not os.path.isfile(fragment) or (ignore_hidden and os.path.basename(fragment).startswith('.')):
|
||||
continue
|
||||
|
||||
fragment_content = file(self._loader.get_real_file(fragment)).read()
|
||||
fragment_content = open(self._loader.get_real_file(fragment)).read()
|
||||
|
||||
# always put a newline between fragments if the previous fragment didn't end with a newline.
|
||||
if add_newline:
|
||||
|
||||
Reference in New Issue
Block a user