Fix so this works with the all themes (oops)

pull/256/head
Travis Swicegood 2014-01-09 10:52:14 -06:00
parent 3f41442e3a
commit adfd72a3ad
1 changed files with 2 additions and 2 deletions

View File

@ -19,14 +19,14 @@ function mkvbranch {
about 'create a new virtualenv for the current branch'
group 'virtualenv'
mkvirtualenv --distribute "$(basename `pwd`)@$(git_prompt_info)"
mkvirtualenv --distribute "$(basename `pwd`)@$SCM_BRANCH"
}
function wovbranch {
about 'sets workon branch'
group 'virtualenv'
workon "$(basename `pwd`)@$(git_prompt_info)"
workon "$(basename `pwd`)@$SCM_BRANCH"
}
function wovenv {