file() function in python3 no longer exist, so use open() (#17303)
This commit is contained in:
parent
9245c786db
commit
adcb87f781
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue