﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
16699	django.core.urlresolvers.reverse failed with complicated regexp	Rémy Hubscher	nobody	"I was using this rule in my project :

    `url(r'^qr/(?P<alias>[a-z0-9-]+)/((?P<size>\d+)/)?$', qrimage, name=""qrimage""),`

And it the use of `reverse('qrimage', args['qrkit', 600])` raise

    `Caught NoReverseMatch while rendering: Reverse for 'qrimage' with arguments '(u'qrkit', 600)' and keyword arguments '{}' not found.`

To solve the problem I used :

    `url(r'^qr/(?P<alias>[a-z0-9-]+)/(?P<size>\d+)/$', qrimage, name=""qrimage""),`

But then it is not really the same behaviour than the one I wanted."	Bug	closed	Core (Other)	1.3	Normal	worksforme	urlresolver		Unreviewed	0	0	0	0	0	0
