diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-07-25 18:53:27 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-07-25 18:53:27 +0000 |
| commit | 065b9aed676e6cdcd9cc2c572811d758d64060bf (patch) | |
| tree | 45d689deafd9afe6685573af0b4706d49c1b9373 | |
| parent | 3d02de27138b420825156f0631a32cdcda2d91aa (diff) | |
Negligible formatting change to django/template/__init__.py
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3449 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 a4c282f2ff..ba7ca4c02b 100644 --- a/django/template/__init__.py +++ b/django/template/__init__.py @@ -358,7 +358,7 @@ class DebugParser(Parser): super(DebugParser, self).extend_nodelist(nodelist, node, token) def unclosed_block_tag(self, parse_until): - (command, source) = self.command_stack.pop() + command, source = self.command_stack.pop() msg = "Unclosed tag '%s'. Looking for one of: %s " % (command, ', '.join(parse_until)) raise self.source_error( source, msg) |
