Changes between Initial Version and Version 1 of Ticket #32874


Ignore:
Timestamp:
Jun 22, 2021, 1:16:03 PM (3 years ago)
Author:
Maciej Strömich
Comment:

formatting

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32874 – Description

    initial v1  
    33URLValidator is not validating such urls.
    44
    5 ```
     5{{{
    66>>> from django.core.validators import URLValidator
    77>>> value = '//example.com'
     
    1212    raise ValidationError(self.message, code=self.code, params={'value': value})
    1313django.core.exceptions.ValidationError: ['Enter a valid URL.']
    14 ```
     14}}}
Back to Top