We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 587a39a commit 27c446dCopy full SHA for 27c446d
estate/models/estate_property.py
@@ -110,4 +110,4 @@ def _restrict_selling_price(self) -> None:
110
for record in self:
111
# Selling price is zero when no offer has been accepted
112
if not float_is_zero(record.selling_price, precision_digits=2) and float_compare(record.selling_price, 0.9 * record.expected_price, precision_digits=2) < 0:
113
- raise ValidationError(_("A property's selling price cannot be lower that 90 percent of its expected price."))
+ raise ValidationError(_("A property's selling price cannot be lower than 90 percent of its expected price."))
0 commit comments