Skip to content

Commit

Permalink
Fixed issue which did not appear in Python 3.7 validations.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmfernandez committed Jun 19, 2024
1 parent fa006ea commit e752116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wfexs_backend/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2410,7 +2410,7 @@ def _fetchRemoteFile(
if not hardenPrettyLocal:
if prettyLocal.is_symlink():
# Path.readlink was added in Python 3.9
oldLocal = os.readlink(prettyLocal)
oldLocal = pathlib.Path(os.readlink(prettyLocal))

hardenPrettyLocal = oldLocal != matContent.local
elif prettyLocal.exists():
Expand Down

0 comments on commit e752116

Please sign in to comment.