From daeda80bb01c6dc4483b4df751f63b227c60463e Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 16 Jan 2018 20:03:11 -0800 Subject: [PATCH] does double backslash make pylint happy? --- certbot-apache/certbot_apache/http_01.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/certbot-apache/certbot_apache/http_01.py b/certbot-apache/certbot_apache/http_01.py index b443ced01..f032492f9 100644 --- a/certbot-apache/certbot_apache/http_01.py +++ b/certbot-apache/certbot_apache/http_01.py @@ -11,7 +11,7 @@ class ApacheHttp01(common.TLSSNI01): CONFIG_TEMPLATE22 = """\ RewriteEngine on - RewriteRule ^/\.well-known/acme-challenge/([A-Za-z0-9-_=]+)$ {0}/$1 [L] + RewriteRule ^/\\.well-known/acme-challenge/([A-Za-z0-9-_=]+)$ {0}/$1 [L] Order Allow,Deny @@ -21,7 +21,7 @@ class ApacheHttp01(common.TLSSNI01): CONFIG_TEMPLATE24 = """\ RewriteEngine on - RewriteRule ^/\.well-known/acme-challenge/([A-Za-z0-9-_=]+)$ {0}/$1 [END] + RewriteRule ^/\\.well-known/acme-challenge/([A-Za-z0-9-_=]+)$ {0}/$1 [END] Require all granted