From: Roland Häder Date: Thu, 23 Nov 2023 00:36:11 +0000 (+0100) Subject: Fixed: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=cb3d2e057d076e31a83995792a974fff5774ca17;p=fba.git Fixed: - identing must be always aligned --- diff --git a/fba/helpers/domain.py b/fba/helpers/domain.py index d006cb1..da39c80 100644 --- a/fba/helpers/domain.py +++ b/fba/helpers/domain.py @@ -79,7 +79,7 @@ def is_wanted(domain: str) -> bool: wanted = True if domain.lower() != domain: - logger.debug("domain='%s' is not all-lowercase - setting False ...", domain) + logger.debug("domain='%s' is not all-lowercase - setting False ...", domain) wanted = False elif not validators.domain(domain.split("/")[0]): logger.debug("domain='%s' is not a valid domain name - setting False ...", domain)