On Tue, May 6, 2014 at 9:40 PM, G Z <zuk...@gmail.com> wrote:

> Thanks so much one last thing
>>
>
> Page not found (404)Request Method:GETRequest URL:
> http://pythondev.enki.co:8001/customers
>
> Using the URLconf defined in provisioning.urls, Django tried these URL
> patterns, in this order:
>
>    1. ^admin/
>    2. ^customers/
>
> The current URL, customers, didn't match any of these.
> You're seeing this error because you have DEBUG = True in your Django
> settings file. Change that to False, and Django will display a standard
> 404 page.
>
> I got it to work but its still not seeing the customers url is my regex
> wrong?
>
>
Check closely what you are being told here.

Django tried these patterns:

"^admins/"
"^customers/"

and neither matched the current URL "customers".

Computers are precise machines - "customers" is not the same as
"customers/". You must be precise.

Cheers

Tom

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFHbX1JPBZ%3DXM5ORwHG9JON%3DX3fk7LiFgbazak6dvTs9zdsyDg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to