Fixed #3543 -- Be a bit more tolerant of spaces following the comma

argument separator in the "url" tag.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@5077 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2007-04-25 10:29:39 +00:00
parent b3e0b59def
commit aa1b182da3
2 changed files with 2 additions and 1 deletions

View File

@ -956,6 +956,7 @@ def url(parser, token):
for arg in bits[2].split(','): for arg in bits[2].split(','):
if '=' in arg: if '=' in arg:
k, v = arg.split('=', 1) k, v = arg.split('=', 1)
k = k.strip()
kwargs[k] = parser.compile_filter(v) kwargs[k] = parser.compile_filter(v)
else: else:
args.append(parser.compile_filter(arg)) args.append(parser.compile_filter(arg))