mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-03 22:25:57 +00:00
Dont use a double quote in bootstrap.py
This commit is contained in:
parent
68df13d3fe
commit
b52e5e795e
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ def debug(msg):
|
|||
|
||||
|
||||
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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue