diff -r d1a603a70f83 -r 9becf9ca115c src/eric7/WebBrowser/SafeBrowsing/SafeBrowsingUrl.py --- a/src/eric7/WebBrowser/SafeBrowsing/SafeBrowsingUrl.py Tue Apr 23 09:29:13 2024 +0200 +++ b/src/eric7/WebBrowser/SafeBrowsing/SafeBrowsingUrl.py Tue Apr 23 11:26:04 2024 +0200 @@ -178,7 +178,7 @@ protocol, addressStr = urllib.parse.splittype(url) host, path = urllib.parse.splithost(addressStr) - user, host = urllib.parse.splituser(host) + _user, host = urllib.parse.splituser(host) host, port = urllib.parse.splitport(host) host = host.strip("/") seenPermutations = set()