We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a933b98 commit 92737bdCopy full SHA for 92737bd
docs/source/history.rst
@@ -2,6 +2,12 @@
2
Release History
3
===============
4
5
+dev
6
+===
7
+
8
+- Add ``tmp-`` prefix to temporary environment names created by
9
+ :ref:`command-mktmpenv`.
10
11
4.1.1
12
=====
13
virtualenvwrapper.sh
@@ -1106,6 +1106,7 @@ function mktmpenv {
1106
# This python does not support uuid
1107
tmpenvname=$("$VIRTUALENVWRAPPER_PYTHON" -c 'import random,sys; sys.stdout.write(hex(random.getrandbits(64))[2:-1]+"\n")' 2>/dev/null)
1108
fi
1109
+ tmpenvname="tmp-$tmpenvname"
1110
1111
# Create the environment
1112
mkvirtualenv "$@" "$tmpenvname"
0 commit comments