I am currently trying out Django. I use the namespace argument in one of my include()s in urls.py. When I run the server and try to browse, I get t
namespace
include()
Check the docs for include here.
What you've done is not an acceptable way of passing parameters to include. You could do:
url(r'^reviews/', include(('reviews.urls', 'reviews'), namespace='reviews')),