Commit 04631c05 by Chris Jerdonek

Renamed section_name to section_key.

parent 43280bd1
......@@ -138,9 +138,9 @@ class Template(object):
if match is None:
break
section, section_name, inner = match.group(0, 1, 2)
section_name = section_name.strip()
it = self.context.get(section_name, None)
section, section_key, inner = match.group(0, 1, 2)
section_key = section_key.strip()
it = self.context.get(section_key, None)
replacer = ''
# Callable
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment