# HG changeset patch # User Brendan Cully # Date 1365568688 25200 # Node ID 74ea61318ea8196e8eb0c1210120a513f10d3c81 # Parent 46c0ca1ef7e1e62d8acfd5a20961251a640fbd3c templater: back out 0615b22da148, it breaks schemes ({1}) diff -r 46c0ca1ef7e1 -r 74ea61318ea8 mercurial/templater.py --- a/mercurial/templater.py Tue Apr 09 09:40:40 2013 -0700 +++ b/mercurial/templater.py Tue Apr 09 21:38:08 2013 -0700 @@ -66,10 +66,7 @@ break pos += 1 sym = program[s:pos] - try: - yield ('string', str(int(sym)), s) - except ValueError: - yield ('symbol', sym, s) + yield ('symbol', sym, s) pos -= 1 elif c == '}': pos += 1 diff -r 46c0ca1ef7e1 -r 74ea61318ea8 tests/test-command-template.t --- a/tests/test-command-template.t Tue Apr 09 09:40:40 2013 -0700 +++ b/tests/test-command-template.t Tue Apr 09 21:38:08 2013 -0700 @@ -1360,12 +1360,6 @@ $ hg log -l1 --template '{date|age}\n' 7 years from now -Filter with int function argument: - - $ hg log --template '{fill(author, 20)}\n' -r 0 - User Name - - Error on syntax: $ echo 'x = "f' >> t