diff --git a/lib/ansible/plugins/action/assemble.py b/lib/ansible/plugins/action/assemble.py index 13a02a88555..d40067aac79 100644 --- a/lib/ansible/plugins/action/assemble.py +++ b/lib/ansible/plugins/action/assemble.py @@ -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: