mirror of
https://github.com/django/django.git
synced 2025-04-05 14:06:42 +00:00
[4.2.x] Refs #36098 -- Fixed validate_ipv4_address() crash for non-string values.
Regression in ca2be7724e1244a4cb723de40a070f873c6e94bf.
This commit is contained in:
parent
043dfadbce
commit
57b0229421
@ -272,6 +272,8 @@ validate_unicode_slug = RegexValidator(
|
||||
|
||||
|
||||
def validate_ipv4_address(value):
|
||||
if isinstance(value, ipaddress.IPv4Address):
|
||||
return
|
||||
try:
|
||||
ipaddress.IPv4Address(value)
|
||||
except ValueError:
|
||||
|
Loading…
x
Reference in New Issue
Block a user