From: Travis Swicegood Date: Thu, 9 Jan 2014 16:52:14 +0000 (-0600) Subject: Fix so this works with the all themes (oops) X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=adfd72a3ad592e3be11512b471ac3f273580ab19;p=common%2Fbash_it.git Fix so this works with the all themes (oops) --- diff --git a/plugins/available/virtualenv.plugin.bash b/plugins/available/virtualenv.plugin.bash index 9357839..651bfec 100644 --- a/plugins/available/virtualenv.plugin.bash +++ b/plugins/available/virtualenv.plugin.bash @@ -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 {