Commit 04631c05 by Chris Jerdonek

Renamed section_name to section_key.

parent 43280bd1
...@@ -138,9 +138,9 @@ class Template(object): ...@@ -138,9 +138,9 @@ class Template(object):
if match is None: if match is None:
break break
section, section_name, inner = match.group(0, 1, 2) section, section_key, inner = match.group(0, 1, 2)
section_name = section_name.strip() section_key = section_key.strip()
it = self.context.get(section_name, None) it = self.context.get(section_key, None)
replacer = '' replacer = ''
# Callable # 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