The correct fix for bug 780497. Missed a backslash.

This commit is contained in:
Siddharth Agarwal 2012-08-06 02:16:00 +05:30
parent d7e70f8548
commit 152872b738

View File

@ -16,7 +16,7 @@ _log = logging.getLogger('pymake.process')
_escapednewlines = re.compile(r'\\\n')
_blacklist = re.compile(r'[$><;[~`|&()]' +
r'|${|(?:^|\s){(?:$|\s)') # Blacklist ${foo} and { commands }
r'|\${|(?:^|\s){(?:$|\s)') # Blacklist ${foo} and { commands }
_needsglob = re.compile(r'[\*\?]')
def clinetoargv(cline):
"""