From bc260fabb18f698e0a729e8fb26ba81a9a4cfac1 Mon Sep 17 00:00:00 2001 From: Jasmine Schladen Date: Thu, 18 Feb 2021 17:45:59 -0800 Subject: [PATCH] Fix style --- lemur/plugins/lemur_acme/acme_handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemur/plugins/lemur_acme/acme_handlers.py b/lemur/plugins/lemur_acme/acme_handlers.py index 3aab83eb..375fd1d6 100644 --- a/lemur/plugins/lemur_acme/acme_handlers.py +++ b/lemur/plugins/lemur_acme/acme_handlers.py @@ -71,7 +71,7 @@ class AcmeHandler(object): return False def strip_wildcard(self, host): - """Removes the leading \\*. and returns Host and whether it was removed or not (True/False)""" + """Removes the leading wildcard and returns Host and whether it was removed or not (True/False)""" prefix = "*." if host.startswith(prefix): return host[len(prefix):], True