On Fri, Jun 10, 2011 at 7:27 AM, Gagan (GPS) <s.gagan.pr...@gmail.com> wrote:
> I have experienced this error on my Ubuntu 11.04. I am unable to even
> view the / page on this site. Kindly help. I was trying to learn
> Django by following the video regarding creating a wiki on
> showmedo.com . The link to the video is:
> http://showmedo.com/videotutorials/video?name=1100000&fromSeriesID=110
>
> Kindly Help.
>
> Following is the Traceback for reference.
>
> Environment:
>  18.   (r'^wikicamp/(?<page_name>[^/]+)/save/$',
>  245.         raise error, v # invalid expression

This re is invalid, specifically "(?<page_name>[^/]+)". I presume you
meant "(?P<page_name>[^/]+)".

Cheers

Tom

-- 
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 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to