Skip to content

Commit 53d520c

Browse files
committed
Fix file URLs to paths and tasks.
1 parent 7c3b3d9 commit 53d520c

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

docs/source/changes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ releases are available on [PyPI](https://pypi.org/project/pytask) and
1010
- {pull}`676` ensures compatibility with click >8.2.0.
1111
- {pull}`680` uses uv everywhere.
1212
- {pull}`684` adds tests for lowest and highest dependency resolutions.
13+
- {pull}`685` fixes the file urls in task and node names.
1314

1415
## 0.5.3 - 2025-05-16
1516

src/_pytask/console.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282

8383
_EDITOR_URL_SCHEMES: dict[str, str] = {
8484
"no_link": "",
85-
"file": "file:///{path}",
85+
"file": "file://{path}",
8686
"vscode": "vscode://file/{path}:{line_number}",
8787
"pycharm": "pycharm://open?file={path}&line={line_number}",
8888
}

0 commit comments

Comments
 (0)