Fix multiple_space warning

pull/839/head
malvidin 2022-06-16 09:44:25 +02:00
parent 2b98616982
commit cfded6e8bb
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ class PSLFaup(object):
:param url: The URL to normalize
"""
self._clear()
if isinstance(url, bytes) and b'//' not in url[:10]:
if isinstance(url, bytes) and b'//' not in url[:10]:
url = b'//' + url
elif '//' not in url[:10]:
url = '//' + url