From 4ac69165f822a42bbcba45698a15c1c403cc4305 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sat, 28 Apr 2007 04:45:38 +0000 Subject: [PATCH] Fixed #4176 -- Fixed unintended change introduced in [5104]. Thanks, SmileyChris. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5116 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/template/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/template/__init__.py b/django/template/__init__.py index 6478636889..7f6056d73c 100644 --- a/django/template/__init__.py +++ b/django/template/__init__.py @@ -239,7 +239,7 @@ class DebugLexer(Lexer): def create_token(self, token_string, source, in_tag): token = super(DebugLexer, self).create_token(token_string, in_tag) - token.source = source + token.source = self.origin, source return token class Parser(object):