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