Fix bug
- Legacy-Id: 11844
This commit is contained in:
parent
1f71268da1
commit
3bfde085c5
|
@ -231,7 +231,7 @@ def suggested_review_requests_for_team(team):
|
|||
|
||||
res = [r for r in requests.itervalues()
|
||||
if not any(blocks(e, r) for e in existing_requests[r.doc_id])]
|
||||
res.sort(key=lambda r: (r.deadline, r.doc_id), reversed=True)
|
||||
res.sort(key=lambda r: (r.deadline, r.doc_id), reverse=True)
|
||||
return res
|
||||
|
||||
def extract_revision_ordered_review_requests_for_documents(queryset, names):
|
||||
|
|
Loading…
Reference in a new issue