A debugging print crept into my commit, oops!

- Legacy-Id: 381
This commit is contained in:
Bill Fenner 2007-06-13 19:47:45 +00:00
parent 2bf510f43b
commit a74d09d172

View file

@ -77,7 +77,6 @@ def search(request):
}
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)
print "queryset is %s, idmatches is %s" % (matches, idmatches)
# resolve the queryset, append wrapper objects.
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):