file() function in python3 no longer exist, so use open() (#17303)

pull/17306/head
Michael Scherer 8 years ago 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:

Loading…
Cancel
Save