summaryrefslogtreecommitdiff
path: root/django/core/management/validation.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/core/management/validation.py')
-rw-r--r--django/core/management/validation.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/core/management/validation.py b/django/core/management/validation.py
index 3cb2e345e8..3aaeaa94c8 100644
--- a/django/core/management/validation.py
+++ b/django/core/management/validation.py
@@ -72,9 +72,9 @@ def get_validation_errors(outfile, app=None):
mdigits_ok = True
except (ValueError, TypeError):
e.add(opts, mdigits_msg % f.name)
- invalid_values_msg = '"%s": DecimalFields require a "max_digits" attribute value that is greater than the value of the "decimal_places" attribute.'
+ invalid_values_msg = '"%s": DecimalFields require a "max_digits" attribute value that is greater than or equal to the value of the "decimal_places" attribute.'
if decimalp_ok and mdigits_ok:
- if decimal_places >= max_digits:
+ if decimal_places > max_digits:
e.add(opts, invalid_values_msg % f.name)
if isinstance(f, models.FileField) and not f.upload_to:
e.add(opts, '"%s": FileFields require an "upload_to" attribute.' % f.name)