Re: URL Matching: 404 Error

2010-01-30 Thread When ideas fail
Ah, I see, the problem is with the keys.., not the URLs On 30 Jan, 22:16, When ideas fail wrote: > Hi, I seem to be having a problem matching one of my URLs. > I have this URL in my .py file in one of my user app. > >  url(r'^activate/(?P\w+)/$', >                            activate, >          

URL Matching: 404 Error

2010-01-30 Thread When ideas fail
Hi, I seem to be having a problem matching one of my URLs. I have this URL in my .py file in one of my user app. url(r'^activate/(?P\w+)/$', activate, name='registration_activate'), and then thats added to my project urls: (r'^users/', inclu