From f2370573bc5138c86776de27d848c731ff1f754c Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 16 Jan 2006 21:45:27 +0000 Subject: [PATCH] magic-removal: Merged to [2014] git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2015 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/template/defaulttags.py | 4 ++-- docs/templates.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/django/template/defaulttags.py b/django/template/defaulttags.py index 363147289a..1a4e1eda10 100644 --- a/django/template/defaulttags.py +++ b/django/template/defaulttags.py @@ -744,7 +744,7 @@ def spaceless(parser, token):

Foo

- {% spaceless %} + {% endspaceless %} This example would return this HTML:: @@ -757,7 +757,7 @@ def spaceless(parser, token): Hello - {% spaceless %} + {% endspaceless %} """ nodelist = parser.parse(('endspaceless',)) parser.delete_first_token() diff --git a/docs/templates.txt b/docs/templates.txt index 3dafb068c3..78e94c5b54 100644 --- a/docs/templates.txt +++ b/docs/templates.txt @@ -677,7 +677,7 @@ Example usage::

Foo

- {% spaceless %} + {% endspaceless %} This example would return this HTML:: @@ -690,7 +690,7 @@ this example, the space around ``Hello`` won't be stripped:: Hello - {% spaceless %} + {% endspaceless %} ssi ~~~