Error in django url.py??

Posted by qulzam on Stack Overflow See other posts from Stack Overflow or by qulzam
Published on 2010-03-29T02:30:16Z Indexed on 2010/03/29 2:33 UTC
Read the original article Hit count: 382

Filed under:

I am new in django. I try to practice and run the wiki application (i found tutorial at Learn django), In url.py file i write the following urls...

urlpatterns = patterns('',
(r'^wikicamp/(?p[^/]+)/edit/$','wikiapp.wiki.views.edit_page'),
(r'^wikicamp/(?p[^/]+)/save/$','wikiapp.wiki.views.save_page'),
(r'^wikicamp/(?p[^/]+)/$','wikiapp.wiki.views.view_page'),
)

But there is errror which i cant understand. sre_Constants.error:Unexpected end of pattern. (r'^wikicamp/(?p[^/]+)/$','wikiapp.wiki.views.view_page'),

© Stack Overflow or respective owner

Related posts about django