From eb95a50cd699d25b4694ae012ff31a92ee2d1049 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 22 Dec 2007 19:20:02 +0000 Subject: [PATCH] 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 --- django/template/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/django/template/__init__.py b/django/template/__init__.py index dbcffcd32b3..8cf83e40c5a 100644 --- a/django/template/__init__.py +++ b/django/template/__init__.py @@ -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