From 7694faa6fcbe0f5ed3d9ab0bf272f7ecedaf5a0d Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Wed, 13 Nov 2024 12:23:06 -0500 Subject: [PATCH] Fix links to documentation (#1323) --- xcp_d/cli/parser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xcp_d/cli/parser.py b/xcp_d/cli/parser.py index 9e4e64e15..3a8294870 100644 --- a/xcp_d/cli/parser.py +++ b/xcp_d/cli/parser.py @@ -120,7 +120,7 @@ def _build_parser(): help=( "A JSON file describing custom BIDS input filters using PyBIDS. " "For further details, please check out " - "https://xcp_d.readthedocs.io/en/" + "https://xcp-d.readthedocs.io/en/" f"{currentv.base_version if is_release else 'latest'}/usage.html#" "filtering-inputs-with-bids-filter-files" ), @@ -749,7 +749,7 @@ def _build_parser(): f"""\ You are using XCP-D v{currentv}, and a newer version of XCP-D is available: v{latest}. Please check out our documentation about how and when to upgrade: -https://xcp_d.readthedocs.io/en/latest/faq.html#upgrading""", +https://xcp-d.readthedocs.io/en/latest/faq.html#upgrading""", file=sys.stderr, )