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
This commit is contained in:
Malcolm Tredinnick 2007-04-28 04:45:38 +00:00
parent 812c261006
commit 4ac69165f8
1 changed files with 1 additions and 1 deletions

View File

@ -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):