diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-04-28 04:45:38 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-04-28 04:45:38 +0000 |
| commit | 4ac69165f822a42bbcba45698a15c1c403cc4305 (patch) | |
| tree | c8c3e39b78a04f83262aa2c6fc52f889674135b6 | |
| parent | 812c261006da23fe10eeddac7c50a935a4182e1f (diff) | |
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
| -rw-r--r-- | django/template/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |
