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'),