Re: Named URL not picking up parameter value

2008-07-09 Thread Brandon Taylor
OMG. I definitely need more sleep! Many thanks, Brandon On Jul 9, 3:20 pm, "Norman Harman" <[EMAIL PROTECTED]> wrote: > Brandon Taylor wrote: > >     url(r'^(?P[w-]+)/$', 'my_site.groups.views.show_group', > > That regex matches one or more w's and hyphens.  You surely wanted [-\w] > to match le

Re: Named URL not picking up parameter value

2008-07-09 Thread Norman Harman
Brandon Taylor wrote: > url(r'^(?P[w-]+)/$', 'my_site.groups.views.show_group', That regex matches one or more w's and hyphens. You surely wanted [-\w] to match letters, numbers, underscores and hyphens. -- Norman J. Harman Jr. Senior Web Specialist, Austin American-Statesman