Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 7 by carl.j.meyer: r43 breaks reverse(), thus breaks sending email confirmations http://code.google.com/p/django-email-confirmation/issues/detail?id=7
In the calls to reverse() added in r43, the second argument to reverse() is given as [confirmation_key] where it should be a keyword argument, args=[confirmation_key]. The second positional argument to reverse() should be the name of a URLconf. Because this is passed to get_resolver, which is memoized, the use of a list here results in a very confusing "lists are unhashable" error. Adding args= in both calls to reverse() fixes the problem. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pinax-updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/pinax-updates?hl=en -~----------~----~----~----~------~----~------~--~---
