aboutsummaryrefslogtreecommitdiffstats
path: root/docs/conf.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2019-04-17 00:11:49 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2019-04-17 12:11:49 +0800
commitf709ce5c5ccd4eb96a5551b21293b04909122bf5 (patch)
treed0aa602751d36fe1e4333bb9fdcfc41576094474 /docs/conf.py
parent33b3b3eb4a02a6f8b0e0ce5a7ca9a29372b59ac0 (diff)
downloadcryptography-f709ce5c5ccd4eb96a5551b21293b04909122bf5.tar.gz
cryptography-f709ce5c5ccd4eb96a5551b21293b04909122bf5.tar.bz2
cryptography-f709ce5c5ccd4eb96a5551b21293b04909122bf5.zip
... regular expressions... what can you do? (#4849)
* ... regular expressions... what can you do? * These are raw strings
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py6
1 files changed, 3 insertions, 3 deletions
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",
]