A debugging print crept into my commit, oops!
- Legacy-Id: 381
This commit is contained in:
parent
2bf510f43b
commit
a74d09d172
|
@ -77,7 +77,6 @@ def search(request):
|
||||||
}
|
}
|
||||||
q_objs = [Q(**{qdict[k]: args[k]}) for k in qdict.keys() if args.get(k, '') != '']
|
q_objs = [Q(**{qdict[k]: args[k]}) for k in qdict.keys() if args.get(k, '') != '']
|
||||||
idmatches = InternetDraft.objects.filter(*q_objs).exclude(id_document_tag__in=in_tracker)
|
idmatches = InternetDraft.objects.filter(*q_objs).exclude(id_document_tag__in=in_tracker)
|
||||||
print "queryset is %s, idmatches is %s" % (matches, idmatches)
|
|
||||||
# resolve the queryset, append wrapper objects.
|
# resolve the queryset, append wrapper objects.
|
||||||
matches = list(matches) + [DocumentWrapper(id) for id in idmatches]
|
matches = list(matches) + [DocumentWrapper(id) for id in idmatches]
|
||||||
if not(args.get('search_filename', '') or args.get('search_status_id', 0)) and args.get('search_rfcnumber', 0):
|
if not(args.get('search_filename', '') or args.get('search_status_id', 0)) and args.get('search_rfcnumber', 0):
|
||||||
|
|
Loading…
Reference in a new issue