Skip to content

Commit

Permalink
Make lsvirtualenv work under zsh using patch from Zach Voase. Fixes #64
Browse files Browse the repository at this point in the history
  • Loading branch information
dhellmann committed Sep 18, 2010
1 parent 6487a2e commit 8fd0bad
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2010-09-18 Doug Hellmann <[email protected]>

* virtualenvwrapper.sh: Apply patch from Zach Voase to fix
lsvirtualenv under zsh.

2010-09-14 Doug Hellmann <[email protected]>

* virtualenvwrapper.sh (workon): Use the brief list format by
Expand Down
10 changes: 10 additions & 0 deletions docs/en/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
Release History
===============

2.5.2

- Apply patch from Zach Voase to fix :ref:`command-lsvirtualenv`
under zsh. Resolves :bbissue:`64`.

2.5.1

- Make :ref:`command-workon` list brief environment details when run
without argument, instead of full details.

2.5

- Add :ref:`command-showvirtualenv` command. Modify
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python

PROJECT = 'virtualenvwrapper'
VERSION = '2.5.1'
VERSION = '2.5.2'

# Bootstrap installation of Distribute
import distribute_setup
Expand Down
2 changes: 1 addition & 1 deletion virtualenvwrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ _lsvirtualenv_usage () {
#
# Usage: lsvirtualenv [-l]
lsvirtualenv () {
typeset args=$(getopt blh $*)
typeset args="$(getopt blh "$@")"
if [ $? != 0 ]
then
_lsvirtualenv_usage
Expand Down

0 comments on commit 8fd0bad

Please sign in to comment.