From: Aleksander Ɓukasz Date: Thu, 21 Nov 2013 22:44:13 +0000 (+0100) Subject: Remove filtering by not having more than two assigned examiners X-Git-Url: https://git.mdrn.pl/edumed.git/commitdiff_plain/591fb2bbadcbdcdd89d38a0980c8ee0bfb471bae Remove filtering by not having more than two assigned examiners --- diff --git a/wtem/management/commands/wtem_assign_submissions.py b/wtem/management/commands/wtem_assign_submissions.py index b0f2a4f..7ff1af2 100644 --- a/wtem/management/commands/wtem_assign_submissions.py +++ b/wtem/management/commands/wtem_assign_submissions.py @@ -32,8 +32,7 @@ class Command(BaseCommand): users = User.objects.filter(username__in = examiner_names) submissions_query = Submission.objects.annotate(examiners_count = Count('examiners')) - submissions = submissions_query \ - .filter(examiners_count__lt=2).exclude(answers = None) + submissions = submissions_query.exclude(answers = None) with_attachment_ids = Attachment.objects.values_list('submission_id', flat=True).all() if options['attachments_only']: