mirror of
https://github.com/StevenBlack/hosts.git
synced 2026-07-01 02:36:52 +00:00
Fix logical issue.
This commit is contained in:
@@ -1126,7 +1126,8 @@ def normalize_rule(rule, target_ip, keep_domain_comments):
|
|||||||
if (
|
if (
|
||||||
is_ip(hostname)
|
is_ip(hostname)
|
||||||
or re.search(static_ip_regex, hostname)
|
or re.search(static_ip_regex, hostname)
|
||||||
or ("." not in hostname and ":" not in hostname)
|
or "." not in hostname
|
||||||
|
or ":" in hostname
|
||||||
):
|
):
|
||||||
# Example: 0.0.0.0 127.0.0.1
|
# Example: 0.0.0.0 127.0.0.1
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user