]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Thu, 30 Nov 2023 00:18:08 +0000 (01:18 +0100)
committerRoland Häder <roland@mxchange.org>
Thu, 30 Nov 2023 00:18:08 +0000 (01:18 +0100)
- fixed copy-paste mistakes in debug messages

fba/helpers/domain.py
fba/helpers/software.py

index da553d2cc24ba16ebdabc2d55fefad206258a1c0..5f5e15a168d9ca738ee6ec9dcc1dd579c6627711 100644 (file)
@@ -48,7 +48,7 @@ def raise_on(domain: str):
     elif domain == "":
         raise ValueError("Parameter 'domain' is empty")
     elif domain in _cache["raise_on"]:
-        logger.debug("Returning cached is_found='%s' - EXIT!", _cache["raise_on"][domain])
+        logger.debug("Returning cached raised_on='%s' - EXIT!", _cache["raise_on"][domain])
         return _cache["raise_on"][domain]
     elif domain.lower() != domain:
         raise ValueError(f"Parameter domain='{domain}' must be all lower-case")
@@ -75,7 +75,7 @@ def is_in_url(domain: str, url: str) -> bool:
     elif url == "":
         raise ValueError("Parameter 'url' is empty")
     elif domain + url in _cache["is_in_url"]:
-        logger.debug("Returning cached is_found='%s' - EXIT!", _cache["is_in_url"][domain + url])
+        logger.debug("Returning cached is_in_url='%s' - EXIT!", _cache["is_in_url"][domain + url])
         return _cache["is_in_url"][domain + url]
 
     punycode = domain.encode("idna").decode("utf-8")
index 3eca4faf83dd479069b449939b15a3e60f6ac3a7..58404bebad6603b9e494d685418054925b4b9170 100644 (file)
@@ -43,7 +43,7 @@ def alias(software: str) -> str:
     elif software == "":
         raise ValueError("Parameter 'software' is empty")
     elif software in _cache["alias"]:
-        logger.debug("Returning cached value='%s' for function 'alias' - EXIT!", _cache["alias"][software])
+        logger.debug("Returning cached alias='%s' - EXIT!", _cache["alias"][software])
         return _cache["alias"][software]
 
     key = software
@@ -169,6 +169,7 @@ def strip_hosted_on(software: str) -> str:
 
 def strip_powered_by(software: str) -> str:
     logger.debug("software='%s' - CALLED!", software)
+
     if not isinstance(software, str):
         raise ValueError(f"Parameter software[]='{type(software)}' is not of type 'str'")
     elif software == "":
@@ -218,8 +219,10 @@ def strip_until(software: str, until: str) -> str:
 def is_relay(software: str) -> bool:
     logger.debug("software='%s'- CALLED!", software)
 
-    if not isinstance(software, str) and software is not None:
+    if not isinstance(software, str):
         raise ValueError(f"software[]='{type(software)}' is not type 'str'")
+    elif software == "":
+        raise ValueError("Parameter 'software' is empty")
 
     found = software in relays