Possible Duplicate:
django - convert a list back to a queryset
I try to add an element to an empty query_set I created. Here is what I did:
query_set=User.objects.none()
for user in list:
query_set=query_set | user
where "list" is a list of users.
I get this error message: 'User' object has no attribute '_clone'