From c862e43f7fb56b6cf1569c7a27c941eb16ab1c29 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 12 Apr 2006 03:29:41 +0000 Subject: [PATCH] Negligible spacing change to core/template/loader.py git-svn-id: http://code.djangoproject.com/svn/django/trunk@2680 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/template/loader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/template/loader.py b/django/core/template/loader.py index 4521bafc72..3d83a1494f 100644 --- a/django/core/template/loader.py +++ b/django/core/template/loader.py @@ -78,7 +78,7 @@ def get_template(template_name): """ return get_template_from_string(*find_template_source(template_name)) -def get_template_from_string(source, origin=None ): +def get_template_from_string(source, origin=None): """ Returns a compiled Template object for the given template code, handling template inheritance recursively.