Skip to content

Commit 5e60d1c

Browse files
committed
fix workon to list in brief mode
1 parent 3e9b176 commit 5e60d1c

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-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-14 Doug Hellmann <[email protected]>
2+
3+
* virtualenvwrapper.sh (workon): Use the brief list format by
4+
default.
5+
16
2010-08-16 Doug Hellmann <[email protected]>
27

38
* virtualenvwrapper/user_scripts.py (get_env_details): New hook to

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'
4+
VERSION = '2.5.1'
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
@@ -307,7 +307,7 @@ workon () {
307307
typeset env_name="$1"
308308
if [ "$env_name" = "" ]
309309
then
310-
lsvirtualenv
310+
lsvirtualenv -b
311311
return 1
312312
fi
313313

0 commit comments

Comments
 (0)