﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
21582	URL namespaces and included URLconfs: the example might be confusing	Pablo Oubiña	nobody	"In the example, https://docs.djangoproject.com/en/1.6/topics/http/urls/#url-namespaces-and-included-urlconfs says:


{{{
from django.conf.urls import include, patterns, url

help_patterns = patterns('',
    url(r'^basic/$', 'apps.help.views.views.basic'),
    url(r'^advanced/$', 'apps.help.views.views.advanced'),
)

url(r'^help/', include(help_patterns, 'bar', 'foo')),
}}}


In this case, I think arg from the include function has to be a 3-tuple:

{{{

url(r'^help/', include((help_patterns, 'bar', 'foo'))),
}}}
"	Bug	closed	Documentation	1.6	Normal	fixed	url, include, URLconf, documentation		Accepted	0	0	0	0	0	0
