mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-12-24 07:37:04 +00:00
Typo fix
This commit is contained in:
parent
235ebe9a4a
commit
8ca58798e4
@ -918,7 +918,7 @@ def set_secondary_dns(hostnames, env):
|
|||||||
raise ValueError("That's neither an IPv4 or IPv6 subnet.")
|
raise ValueError("That's neither an IPv4 or IPv6 subnet.")
|
||||||
else:
|
else:
|
||||||
v = ipaddress.ip_address(item[4:]) # raises a ValueError if there's a problem
|
v = ipaddress.ip_address(item[4:]) # raises a ValueError if there's a problem
|
||||||
if not isinstance(v, ipaddress.IPv4Network) and not isinstance(v, ipaddress.IPv6Network):
|
if not isinstance(v, ipaddress.IPv4Address) and not isinstance(v, ipaddress.IPv6Address):
|
||||||
raise ValueError("That's neither an IPv4 or IPv6 address.")
|
raise ValueError("That's neither an IPv4 or IPv6 address.")
|
||||||
except ValueError:
|
except ValueError:
|
||||||
raise ValueError("'%s' is not an IPv4 or IPv6 address or subnet." % item[4:])
|
raise ValueError("'%s' is not an IPv4 or IPv6 address or subnet." % item[4:])
|
||||||
|
Loading…
Reference in New Issue
Block a user