From a433e97cb5234ce43a35caf909446446bf98219d Mon Sep 17 00:00:00 2001 From: Ryan Clary <9618975+mrclary@users.noreply.github.com> Date: Tue, 20 Feb 2024 10:48:08 -0800 Subject: [PATCH] Fix typo in shabang line in user-env.sh --- spyder/utils/environ.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spyder/utils/environ.py b/spyder/utils/environ.py index 899e241ee3c..d8afa78b9aa 100644 --- a/spyder/utils/environ.py +++ b/spyder/utils/environ.py @@ -51,7 +51,7 @@ def _get_user_env_script(): if Path(shell).name in ('bash', 'zsh'): script_text = dedent( f"""\ - !{shell} -i + #!{shell} -i unset HISTFILE {shell} -l -c "'{sys.executable}' -c 'import os; print(dict(os.environ))'" """