From 4607683e2e51ec2c52ed659ce9ca3029105a48a9 Mon Sep 17 00:00:00 2001 From: Guillaume Lambert Date: Fri, 23 Apr 2021 15:49:31 +0200 Subject: [PATCH] Fix some regex in docs/conf.py Signed-off-by: Guillaume Lambert Change-Id: I847bcbb0744f7049097cdb840f0835cc9af46d9b --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index db4f3a802..600a3421c 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,7 +60,7 @@ linkcheck_ignore = [ # URL returns a 403 Forbidden 'https://www.osgi.org', # Ignore anchors on github.com because linkcheck fails on them - '^http[s]://github.com/.*#', + '^https?://github.com/.*#', # Ignore webchat anchors because '#' is not an anchor for this app 'https://webchat.freenode.net/#', # Ignore google docs anchors @@ -69,7 +69,7 @@ linkcheck_ignore = [ '../_static/OpenDaylight-Technical-Charter-LFN-Projects-LLC-FINAL.pdf', # Ignore IETF URLs often not reachable from Jenkins minions # because of hosting connectivity issues - '^http[s]://tools.ietf.org/html/.*', + '^https?://tools.ietf.org/html/.*', # pending release -- to remove once published 'https://www.opendaylight.org/current-release-silicon', ] -- 2.36.6