Skip to content

Commit

Permalink
Fix dir_path
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreMarcel99 committed Nov 28, 2024
1 parent 9be927a commit 164a996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/zos_fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ def _fetch_pdse(self, src, is_binary, temp_dir=None, encoding=None):
if is_binary:
copy_args["options"] = "-B"

rc = datasets.copy(source=src, target=file_path, **copy_args)
rc = datasets.copy(source=src, target=dir_path, **copy_args)

if rc != 0:
rmtree(dir_path)
Expand Down

0 comments on commit 164a996

Please sign in to comment.