Skip to content

Commit 57e63bf

Browse files
Ryan BalfanzRyan Balfanz
Ryan Balfanz
authored and
Ryan Balfanz
committed
Scratch that, this change results in a NoReverseMatch
1 parent 9459bdb commit 57e63bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ Include the `launch_page` URLconf in your project urls.py:
3636

3737
urlpatterns = patterns('',
3838
...
39-
url(r'^launch_page/', include('launch_page.urls', namespace="launch_page")),
39+
url(r'^launch_page/', include('launch_page.urls')),
4040
)
4141

4242
or, bind it to the root domain, as in the example project:
4343

4444
urlpatterns = patterns('',
45-
url(r'', include('launch_page.urls', namespace="launch_page")),
45+
url(r'', include('launch_page.urls')),
4646
...
4747
)
4848

0 commit comments

Comments
 (0)