From 6c69d7eeda2b26b525164e98d435c7d7b40fe77c Mon Sep 17 00:00:00 2001 From: Skyler Berg Date: Mon, 16 Mar 2015 20:42:30 -0700 Subject: [PATCH] Fix missing comma in installation settings documentation --- docs/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation.rst b/docs/installation.rst index cc9edc5..38c849f 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -57,7 +57,7 @@ Registration (optional) urlpatterns = patterns('', ..., - (r'^rest-auth/', include('rest_auth.urls')) + (r'^rest-auth/', include('rest_auth.urls')), (r'^rest-auth/registration/', include('rest_auth.registration.urls')) )