From c958ef5d1c973d055f606c62ba36722dd3072ebe Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 8 Sep 2004 22:40:34 +0000 Subject: [PATCH] XXX --- src/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils.py b/src/utils.py index 17d672f52..8fe698133 100755 --- a/src/utils.py +++ b/src/utils.py @@ -262,6 +262,7 @@ def perlReToReplacer(s): else: return lambda s: r.sub(replace, s, 1) +# XXX Should we find a way to allow $1, $2, etc.? _perlVarSubstituteRe = re.compile(r'\$\{([^}]+)\}|\$([a-zA-Z][a-zA-Z0-9]*)') def perlVariableSubstitute(vars, text): def replacer(m):