twoscoops / two-scoops-of-django-1.6

Tracking thoughts and feature requests for Two Scoops of Django 1.6
51 stars 7 forks source link

Code example 14.6 p183 #69

Closed danodonovan closed 9 years ago

danodonovan commented 10 years ago

In the comments, there is a suggested url() call which has a misplaced bracket; it is

url(r"^api/", include("core.api"), namespace="api"),

url() doesn't have a kwarg namespace, but include() does

 url(r"^api/", include("core.api", namespace="api")),
pydanny commented 9 years ago

:ship: