mercurial/templater.py
changeset 8312 b87a50b7125c
parent 8225 46293a0c7e9f
child 8360 acc202b71619
equal deleted inserted replaced
8311:e0eb03bfa5af 8312:b87a50b7125c
     5 # This software may be used and distributed according to the terms of the
     5 # This software may be used and distributed according to the terms of the
     6 # GNU General Public License version 2, incorporated herein by reference.
     6 # GNU General Public License version 2, incorporated herein by reference.
     7 
     7 
     8 from i18n import _
     8 from i18n import _
     9 import re, sys, os
     9 import re, sys, os
    10 from mercurial import util, config
    10 import util, config
    11 
    11 
    12 path = ['templates', '../templates']
    12 path = ['templates', '../templates']
    13 
    13 
    14 def parsestring(s, quoted=True):
    14 def parsestring(s, quoted=True):
    15     '''parse a string using simple c-like syntax.
    15     '''parse a string using simple c-like syntax.