diff options
author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-01-14 16:07:55 -0800 |
---|---|---|
committer | Chris Jerdonek <chris.jerdonek@gmail.com> | 2012-01-18 13:26:22 -0800 |
commit | cba3c79c7aae5eefd4fab4e81d6d4ac42f691957 (patch) | |
tree | 353c78a0a8bdcdc5006a733d9868f4135820b621 /pystache/parser.py | |
parent | 5189316b8517ec6ef021431c1e550e7693652b66 (diff) | |
download | pystache-cba3c79c7aae5eefd4fab4e81d6d4ac42f691957.tar.gz |
Renamed a RenderEngine._parse() argument from template_string to template.
Diffstat (limited to 'pystache/parser.py')
-rw-r--r-- | pystache/parser.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pystache/parser.py b/pystache/parser.py index 44bf7bd..f74d1bd 100644 --- a/pystache/parser.py +++ b/pystache/parser.py @@ -79,6 +79,10 @@ class Parser(object): This method uses the current tag delimiter. + Arguments: + + template: a template string of type unicode. + """ parse_tree = [] start_index = index |