From f709ce5c5ccd4eb96a5551b21293b04909122bf5 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 17 Apr 2019 00:11:49 -0400 Subject: ... regular expressions... what can you do? (#4849) * ... regular expressions... what can you do? * These are raw strings --- docs/conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/conf.py') diff --git a/docs/conf.py b/docs/conf.py index 3eb6000c..4f1a5092 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -180,9 +180,9 @@ linkcheck_retries = 10 linkcheck_ignore = [ # Small DH key results in a TLS failure on modern OpenSSL - "https://info.isl.ntt.co.jp/crypt/eng/camellia/", + r"https://info.isl.ntt.co.jp/crypt/eng/camellia/", # Serving an incomplete chain - "https://www.cosic.esat.kuleuven.be", + r"https://www.cosic.esat.kuleuven.be", # 403ing from Travis - "https://devblogs.microsoft.com/oldnewthing/?p=4223", + r"https://devblogs.microsoft.com/oldnewthing/\?p=4223", ] -- cgit v1.2.3