From e56c8d7e0ac253f7c136584d9a09fed7a4c5db29 Mon Sep 17 00:00:00 2001 From: Riley Strong Date: Mon, 19 Nov 2012 19:31:21 -0600 Subject: [PATCH] [1.5.X] Fixed typo in django.template.defaulttags Backport of d179794c6b from master --- django/template/defaulttags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/template/defaulttags.py b/django/template/defaulttags.py index fa2e840cbf..380db41d43 100644 --- a/django/template/defaulttags.py +++ b/django/template/defaulttags.py @@ -401,7 +401,7 @@ class URLNode(Node): # Try to look up the URL twice: once given the view name, and again # relative to what we guess is the "main" app. If they both fail, # re-raise the NoReverseMatch unless we're using the - # {% url ... as var %} construct in which cause return nothing. + # {% url ... as var %} construct in which case return nothing. url = '' try: url = reverse(view_name, args=args, kwargs=kwargs, current_app=context.current_app)