Dont use a double quote in bootstrap.py

This commit is contained in:
Kovid Goyal 2022-03-07 11:11:10 +05:30
parent 68df13d3fe
commit b52e5e795e
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -73,7 +73,7 @@ def debug(msg):
def unquote_env_val(x): def unquote_env_val(x):
return re.sub('\\\\([\\$`"\n])', r'\1', x[1:-1]) return re.sub('\\\\([\\$`\x22\n])', r'\1', x[1:-1])
def apply_env_vars(raw): def apply_env_vars(raw):