Right now I've got a URL pattern that works for letters and numbers,
but when a character like %20 gets thrown in it fails.

The pattern is this:

(r'^(?P<title>\w+)/$', 'detail'),

Which works when I have:

domain.com/Friends/
domain.com/24/

but not for

domain.com/The%20Office/

How do I get it to accept the %20?

Thank in advance.
- Andy
--~--~---------~--~----~------------~-------~--~----~
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