stormpath / stormpath-django

Django plugin for Stormpath
Apache License 2.0
38 stars 19 forks source link

The URL config for ID site is wrong #23

Closed espenak closed 9 years ago

espenak commented 9 years ago

The urls.py example for ID site in README.rst is:

url(r'', include(django_stormpath.urls)),

This should be:

url(r'', include('django_stormpath.urls')),

(the include argument must be a string)

rdegges commented 9 years ago

Thank you! Good catch.

Just pushed an update to this =) Appreciate your help.