I wrote a small function as follows from models import MyModel
def simple_contain( MyModelA , clean_dictionary, my_field_name) my_filter_field= my_field_name + '__contains' x = MyModelA.objects.filter(my_filter_field = form_data[my_field_name] return x ..... k = simple_contain(MyModel, clean_data, 'name_of_field') ... this results in a TypeError at xyz Cannot resolve keyword 'my_filter_field' into field /usr/lib/python2.3/site-packages/django/db/models/query.py in lookup_inner, line 890 It appears to be trying to resolve the whole name into a field when it should take just the part before double underscore. Any ideas suggestions ? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---