Changes between Version 1 and Version 2 of Ticket #30328


Ignore:
Timestamp:
Apr 4, 2019, 4:03:03 AM (5 years ago)
Author:
Harro
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #30328 – Description

    v1 v2  
    44
    55The result was the following error:
    6 `
     6{{{
    77  File "<venv>/lib/python3.6/site-packages/django/db/models/fields/__init__.py", line 1799, in <genexpr>
    8     validator.limit_value <= max_value for validator in validators_)):
    9 `
     8validator.limit_value <= max_value for validator in validators_)):
     9}}}
    1010
    1111So the field wants to check that the validator's max (and min) value lie within range of the Integer field which is not possible with the callable.
Back to Top