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

Page 85, Section 7.4, Example 7-3 - missing parenthesis #72

Closed particleslam closed 9 years ago

particleslam commented 10 years ago

in the root urls.py example, the url line is:

url(r'^tastings/', include('tastings.urls', namespace='tastings'),

It seems to be missing a parenthesis at the end, which would be:

url(r'^tastings/', include('tastings.urls', namespace='tastings')),
pydanny commented 9 years ago

:ship: