Fix the basic templating system such that when the template ends in '$', life continues as normal.

This commit is contained in:
Michael DeHaan 2012-10-20 10:53:34 -04:00
parent 6b8448051f
commit 6fa1a49037
4 changed files with 11 additions and 7 deletions

View file

@ -246,6 +246,8 @@ def _varFind(text):
if start == -1:
return None
var_start = start + 1
if var_start >= len(text):
return None
if text[var_start] == '{':
is_complex = True
brace_level = 1