Fix style

This commit is contained in:
Jasmine Schladen 2021-02-18 17:45:59 -08:00
parent 0bc66be418
commit bc260fabb1
1 changed files with 1 additions and 1 deletions

View File

@ -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