Commit c4d6a98d authored by Michal Čihař's avatar Michal Čihař

Keep consistency checks even for fuzzy strings

parent 81e72994
......@@ -1879,7 +1879,8 @@ class Unit(models.Model):
Updates checks for this unit.
'''
if self.fuzzy:
self.checks().delete()
# Keep consistency checks even for fuzzy strings
self.checks().exclude(check = 'inconsistent').delete()
return
src = self.get_source_plurals()
tgt = self.get_target_plurals()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment