Skip to content

Commit 8fd0bad

Browse files
committed
Make lsvirtualenv work under zsh using patch from Zach Voase. Fixes #64
1 parent 6487a2e commit 8fd0bad

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2010-09-18 Doug Hellmann <[email protected]>
2+
3+
* virtualenvwrapper.sh: Apply patch from Zach Voase to fix
4+
lsvirtualenv under zsh.
5+
16
2010-09-14 Doug Hellmann <[email protected]>
27

38
* virtualenvwrapper.sh (workon): Use the brief list format by

docs/en/history.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
Release 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+
515
2.5
616

717
- Add :ref:`command-showvirtualenv` command. Modify

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22

33
PROJECT = 'virtualenvwrapper'
4-
VERSION = '2.5.1'
4+
VERSION = '2.5.2'
55

66
# Bootstrap installation of Distribute
77
import distribute_setup

virtualenvwrapper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ _lsvirtualenv_usage () {
251251
#
252252
# Usage: lsvirtualenv [-l]
253253
lsvirtualenv () {
254-
typeset args=$(getopt blh $*)
254+
typeset args="$(getopt blh "$@")"
255255
if [ $? != 0 ]
256256
then
257257
_lsvirtualenv_usage

0 commit comments

Comments
 (0)