mirror of https://github.com/django/django.git
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:
parent
812c261006
commit
4ac69165f8
|
@ -239,7 +239,7 @@ class DebugLexer(Lexer):
|
||||||
|
|
||||||
def create_token(self, token_string, source, in_tag):
|
def create_token(self, token_string, source, in_tag):
|
||||||
token = super(DebugLexer, self).create_token(token_string, in_tag)
|
token = super(DebugLexer, self).create_token(token_string, in_tag)
|
||||||
token.source = source
|
token.source = self.origin, source
|
||||||
return token
|
return token
|
||||||
|
|
||||||
class Parser(object):
|
class Parser(object):
|
||||||
|
|
Loading…
Reference in New Issue