summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiggyBar <sigmund_vik@yahoo.com>2021-10-23 12:13:15 +0200
committerGitHub <noreply@github.com>2021-10-23 11:13:15 +0100
commit35ec4416d2012cfcb7a5e638813f6d52e852f29f (patch)
treec41ebd4ddd197bc7a61de688e721d1bc116c1c32
parentc36117987cf65da92d4cfa7ab042f28a6266e135 (diff)
downloadvirtualenv-35ec4416d2012cfcb7a5e638813f6d52e852f29f.tar.gz
Remove stray closing parenthesis in activate.bat (#2221)
-rw-r--r--docs/changelog/2221.bugfix.rst1
-rw-r--r--src/virtualenv/activation/batch/activate.bat1
2 files changed, 1 insertions, 1 deletions
diff --git a/docs/changelog/2221.bugfix.rst b/docs/changelog/2221.bugfix.rst
new file mode 100644
index 0000000..ff7580f
--- /dev/null
+++ b/docs/changelog/2221.bugfix.rst
@@ -0,0 +1 @@
+Remove stray closing parenthesis in activate.bat - by :user:`SiggyBar`.
diff --git a/src/virtualenv/activation/batch/activate.bat b/src/virtualenv/activation/batch/activate.bat
index c0949ba..2ce9e5a 100644
--- a/src/virtualenv/activation/batch/activate.bat
+++ b/src/virtualenv/activation/batch/activate.bat
@@ -17,7 +17,6 @@ if not defined VIRTUAL_ENV_DISABLE_PROMPT (
if NOT DEFINED ENV_PROMPT (
for %%d in ("%VIRTUAL_ENV%") do set "ENV_PROMPT=(%%~nxd) "
)
- )
set "PROMPT=%ENV_PROMPT%%PROMPT%"
)