On Wed, 2008-11-12 at 22:39 -0500, Karen Tracey wrote: > On Wed, Nov 12, 2008 at 10:27 PM, Brandon Taylor > <[EMAIL PROTECTED]> wrote: > > Hi everyone, > > So I have a question/problem with a named URL pattern... > > #urls.py > url(r'^resources/conversions/(?P<conversion_template>[-\w]+)/$', > 'my_site.views.conversions', name='conversions'), [...]
> The \w in your specifier for conversion_template matches [a-zA-Z0-9_] > but you are trying to match something with dashes in it. That isn't the issue. The pattern is [-\w], which will also match dashes. I'm not sure what is going wrong yet, though, since it looks like it should be working. Regards, Malcolm > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---