[Answer]-Django 1.7 Dashes in URL

1👍

The problems comes from the urls.py file where you include the urls.py you are showing.

It looks like you did:

url(r'^blog/$', include('blog.urls'))

You need to drop the $ (ref).

👤aumo

Leave a comment