Skip to content

Commit 1a9fa6f

Browse files
committed
Fixing accidental breakage of /ipr/ list
- Legacy-Id: 393
1 parent c8c15b7 commit 1a9fa6f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/ipr/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def updatelist(request):
2828

2929
def list_all(request, template):
3030
"""Display a list of existing disclosures, using the provided template"""
31-
disclosures = ietf.ipr.models.IprDetail.objects.all()
31+
disclosures = IprDetail.objects.all()
3232
generic_disclosures = disclosures.filter(status__in=[1,3], generic=1)
3333
specific_disclosures = disclosures.filter(status__in=[1,3], generic=0, third_party=0)
3434
thirdpty_disclosures = disclosures.filter(status__in=[1,3], generic=0, third_party=1)

0 commit comments

Comments
 (0)