From d28d62d9c7b049a216127ee5897724cfeb3c85ad Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 4 Jun 2023 11:07:05 +0200 Subject: [PATCH] Continued: - it is without slashes --- fba/fba.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fba/fba.py b/fba/fba.py index 5084f76..982cc62 100644 --- a/fba/fba.py +++ b/fba/fba.py @@ -1420,7 +1420,7 @@ def tidyup_domain(domain: str) -> str: # No port number domain = re.sub("\:\d+$", "", domain) - # No protocol, sometimes with the slashes + # No protocol, sometimes without the slashes domain = re.sub("^https?\:(\/*)", "", domain) # No trailing slash -- 2.39.5