From b52e5e795e04d862095ccb679017358b1f32fb60 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 7 Mar 2022 11:11:10 +0530 Subject: [PATCH] Dont use a double quote in bootstrap.py --- shell-integration/ssh/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell-integration/ssh/bootstrap.py b/shell-integration/ssh/bootstrap.py index df70acad5..840d9f2ea 100644 --- a/shell-integration/ssh/bootstrap.py +++ b/shell-integration/ssh/bootstrap.py @@ -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):