We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bf510f commit a74d09dCopy full SHA for a74d09d
1 file changed
ietf/idtracker/views.py
@@ -77,7 +77,6 @@ def search(request):
77
}
78
q_objs = [Q(**{qdict[k]: args[k]}) for k in qdict.keys() if args.get(k, '') != '']
79
idmatches = InternetDraft.objects.filter(*q_objs).exclude(id_document_tag__in=in_tracker)
80
- print "queryset is %s, idmatches is %s" % (matches, idmatches)
81
# resolve the queryset, append wrapper objects.
82
matches = list(matches) + [DocumentWrapper(id) for id in idmatches]
83
if not(args.get('search_filename', '') or args.get('search_status_id', 0)) and args.get('search_rfcnumber', 0):
0 commit comments