Here is the snippet of code where the exception is generated by
get_object(). This is in a module level function of a model.

       sql = {
            'manufacturer__iexact':post_data.get('manufacturer', None),
            'model__iexact':post_data.get('model', None),
            'wattage__exact':post_data.get('wattage', None),
        }
        obj = None
        try:
            obj = get_object(**sql)
        except ObjectDoesNotExist:
            # not a duplicate
            pass
        return obj

Thanks for looking at this.


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to