diff --git a/pystache/renderer.py b/pystache/renderer.py index c4c62501..19519d59 100644 --- a/pystache/renderer.py +++ b/pystache/renderer.py @@ -452,6 +452,7 @@ def render(self, template, *context, **kwargs): """ if is_string(template) and os.path.isfile(template) and os.access(template, os.R_OK): + # should self be the first arg in the function call? return self.render_path(self, template, *context, **kwargs) if is_string(template): return self._render_string(template, *context, **kwargs)