Removed a comment in django/template/__init__.py that suggests we would do 'crazy stack-frame stuff'

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6972 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-12-22 19:20:02 +00:00
parent 98d3da6389
commit eb95a50cd6
1 changed files with 0 additions and 2 deletions

View File

@ -161,8 +161,6 @@ class Template(object):
raise TemplateEncodingError("Templates can only be constructed from unicode or UTF-8 strings.")
if settings.TEMPLATE_DEBUG and origin is None:
origin = StringOrigin(template_string)
# Could do some crazy stack-frame stuff to record where this string
# came from...
self.nodelist = compile_string(template_string, origin)
self.name = name