Commit 8f8fd6c4 by Chris Jerdonek

Renamed custom to spec inside SpecLoader.load().

parent f6b36707
...@@ -184,7 +184,7 @@ class SpecLoader(object): ...@@ -184,7 +184,7 @@ class SpecLoader(object):
return path return path
def load(self, custom): def load(self, spec):
""" """
Find and return the template associated to a TemplateSpec instance. Find and return the template associated to a TemplateSpec instance.
...@@ -192,12 +192,12 @@ class SpecLoader(object): ...@@ -192,12 +192,12 @@ class SpecLoader(object):
Arguments: Arguments:
custom: a TemplateSpec instance. spec: a TemplateSpec instance.
""" """
if custom.template is not None: if spec.template is not None:
return self.loader.unicode(custom.template, custom.template_encoding) return self.loader.unicode(spec.template, spec.template_encoding)
path = self.get_template_path(custom) path = self.get_template_path(spec)
return self.loader.read(path, custom.template_encoding) return self.loader.read(path, spec.template_encoding)
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