Change in rev:8760 introduced this exception: "Don't mix *args and **kwargs in call to reverse()!"
-- django/trunk/django/core/urlresolvers.py -- ... def reverse(self, lookup_view, *args, **kwargs): if args and kwargs: raise ValueError("Don't mix *args and **kwargs in call to reverse()!") ... Why is not possible to mis args and kwargs? I don't understand the reason, and all of my reverse funcions will fail because of this. I'd like some help with this. Thank you. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---