On May 30, 11:08 am, "Viktor Nagy" <[EMAIL PROTECTED]> wrote:
> IndexError: list index out of range
>
> I've tried to catch IndexError as well, but it fails with the same error
> try:
>         q = models.Queue.objects.filter(type=type, status=0)[0]
>     except models.Queue.DoesNotExist, IndexError:
>         return WebAPIResponseError(request, DOES_NOT_EXIST)
>
> Any ideas how to catch the error?
>
> Viktor

To catch multiple exception types in the same except block, you need
to use a tuple:

except (models.Queue.DoesNotExist, IndexError):

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

Reply via email to