From df06056a17c96627cad9436826e7580784e6f3ae Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Tue, 22 Nov 2005 23:18:47 +0000 Subject: [PATCH] fixed missing """ in the code git-svn-id: http://code.djangoproject.com/svn/django/branches/new-admin@1363 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/template/loader.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/django/core/template/loader.py b/django/core/template/loader.py index 482972c79c..b961043267 100644 --- a/django/core/template/loader.py +++ b/django/core/template/loader.py @@ -260,6 +260,8 @@ def do_include(parser, token): Example:: {% include "foo/some_include" %} + """ + bits = token.contents.split() if len(bits) != 2: raise TemplateSyntaxError, "%r tag takes one argument: the name of the template to be included" % bits[0]