Commit 0d6232a4 authored by Michal Čihař's avatar Michal Čihař

Ignore ignored checks on queries

parent 3c48a219
......@@ -73,7 +73,8 @@ class UnitManager(models.Manager):
sugs = trans.models.Check.objects.filter(
language = sample.translation.language,
project = sample.translation.subproject.project,
check = rqtype)
check = rqtype,
ignore = False)
sugs = sugs.values_list('checksum', flat = True)
return self.filter(checksum__in = sugs)
else:
......
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