From c75d5e18fd67c041d86cd09794a921ab820b5466 Mon Sep 17 00:00:00 2001 From: David Hughes Date: Wed, 13 Mar 2013 20:58:04 -0700 Subject: [PATCH] Expand any user home variable in pip module's virtualenv parameter --- pip | 1 + 1 file changed, 1 insertion(+) diff --git a/pip b/pip index bb295b539b9..76210c26182 100644 --- a/pip +++ b/pip @@ -188,6 +188,7 @@ def main(): virtualenv_command = module.params['virtualenv_command'] if env: + env = os.path.expanduser(env) virtualenv = module.get_bin_path(virtualenv_command, True) if not os.path.exists(os.path.join(env, 'bin', 'activate')): if module.check_mode: