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

Fixed variable name

parent 4fbd641f
...@@ -597,7 +597,7 @@ class Translation(models.Model): ...@@ -597,7 +597,7 @@ class Translation(models.Model):
self.fuzzy = self.unit_set.filter(fuzzy=True).count() self.fuzzy = self.unit_set.filter(fuzzy=True).count()
self.translated = self.unit_set.filter(translated=True).count() self.translated = self.unit_set.filter(translated=True).count()
self.failing_checks = self.unit_set.filter_checks( self.failing_checks = self.unit_set.filter_checks(
'allchecks', translation 'allchecks', self
).count() ).count()
self.save() self.save()
self.store_hash() self.store_hash()
......
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