From adfd72a3ad592e3be11512b471ac3f273580ab19 Mon Sep 17 00:00:00 2001 From: Travis Swicegood Date: Thu, 9 Jan 2014 10:52:14 -0600 Subject: [PATCH] Fix so this works with the all themes (oops) --- plugins/available/virtualenv.plugin.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 { -- 2.17.1