#8725: TemplateSyntaxError at /admin/ with [8760]
-------------------------------------+--------------------------------------
Reporter: kmtracey | Owner: nobody
Status: new | Milestone: 1.0
Component: Core framework | Version: SVN
Resolution: | Keywords:
Stage: Accepted | Has_patch: 0
Needs_docs: 0 | Needs_tests: 0
Needs_better_patch: 0 |
-------------------------------------+--------------------------------------
Comment (by carljm):
I've tracked this problem down to the use of an empty regex in a URLConf.
This is useful in order to include an application's urls with no prefix;
i.e. something like this at the end of a urlpatterns:
{{{
url(r'', include('some_app.urls'))
}}}
Based on this, I think the attached patch is the correct fix. The first
call to next() will raise StopIteration if the pattern is zero-length, so
it needs to be within the try block.
--
Ticket URL: <http://code.djangoproject.com/ticket/8725#comment:7>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---