lower + whoisd
This commit is contained in:
parent
59285db0c0
commit
5dc73862a2
|
@ -109,7 +109,7 @@ def findInDatabase(rawValue):
|
||||||
|
|
||||||
# domain?
|
# domain?
|
||||||
if rawValue.endswith("DN") or rawValue.endswith("DN."):
|
if rawValue.endswith("DN") or rawValue.endswith("DN."):
|
||||||
value = rawValue
|
value = rawValue.lower()
|
||||||
if not value.endswith("."):
|
if not value.endswith("."):
|
||||||
value += "."
|
value += "."
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@ class HandleValidatorWithSuffix(validators.RegexValidator):
|
||||||
|
|
||||||
def IP46CIDRValidator(value):
|
def IP46CIDRValidator(value):
|
||||||
if not re.match(r"[0-9a-fA-F:.]+/[0-9]+", value):
|
if not re.match(r"[0-9a-fA-F:.]+/[0-9]+", value):
|
||||||
raise ValidationError("Address needs to be a subnet in the format of ip/cidr")
|
raise ValidationError("Address needs to be a subnet in the format of ip/prefix")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
ipaddress.ip_network(value)
|
ipaddress.ip_network(value)
|
||||||
|
|
Loading…
Reference in New Issue