File tree Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 1+ 2010-09-18 Doug Hellmann <dhellmann@racemi.com>
2+
3+ * virtualenvwrapper.sh: Apply patch from Zach Voase to fix
4+ lsvirtualenv under zsh.
5+
162010-09-14 Doug Hellmann <dhellmann@racemi.com>
27
38 * virtualenvwrapper.sh (workon): Use the brief list format by
Original file line number Diff line number Diff line change 22Release History
33===============
44
5+ 2.5.2
6+
7+ - Apply patch from Zach Voase to fix :ref: `command-lsvirtualenv `
8+ under zsh. Resolves :bbissue: `64 `.
9+
10+ 2.5.1
11+
12+ - Make :ref: `command-workon ` list brief environment details when run
13+ without argument, instead of full details.
14+
5152.5
616
717 - Add :ref: `command-showvirtualenv ` command. Modify
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22
33PROJECT = 'virtualenvwrapper'
4- VERSION = '2.5.1 '
4+ VERSION = '2.5.2 '
55
66# Bootstrap installation of Distribute
77import distribute_setup
Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ _lsvirtualenv_usage () {
251251#
252252# Usage: lsvirtualenv [-l]
253253lsvirtualenv () {
254- typeset args=$( getopt blh $* )
254+ typeset args=" $( getopt blh " $@ " ) "
255255 if [ $? != 0 ]
256256 then
257257 _lsvirtualenv_usage
You can’t perform that action at this time.
0 commit comments