emencia / emencia-django-newsletter

An app for sending newsletter by email to a contact list.
189 stars 72 forks source link

Url tracking code mangling original url parameters. #78

Open benoitg opened 11 years ago

benoitg commented 11 years ago

tracking code was mangling original url parameters. The (non-obvious) bug was that the reverse of some_dict = urlparse.parse_qs(some_querystring) isn't urlencode(some_dict), it's actually: urlencode(some_dict, True)

Reference: http://bugs.python.org/issue15593