Skip to content

Commit e31499c

Browse files
rbierbaszregisf
authored andcommitted
Fix path to virtualenv (#16)
Removed '
1 parent 16efdcf commit e31499c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

VirtualEnvWrapper.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function Invoke-CreatePyEnv($Command, $Name) {
111111
# Create Python Environment using the VirtualEnv.exe command
112112
#
113113
function New-Python2Env($Python, $Name) {
114-
$Command = (Join-Path (Join-Path (Split-Path $Python -Parent) "Scripts") "virtualenv.exe'")
114+
$Command = (Join-Path (Join-Path (Split-Path $Python -Parent) "Scripts") "virtualenv.exe")
115115
if ((Test-Path $Command) -eq $false) {
116116
Write-FormatedError "You must install virtualenv program to create the Python virtual environment '$Name'"
117117
return
@@ -401,4 +401,4 @@ Set-Alias rmvirtualenv Remove-VirtualEnv
401401
Set-Alias mkvirtualenv New-VirtualEnv
402402

403403

404-
Write-Host "Virtual Env Wrapper for Powershell activated"
404+
Write-Host "Virtual Env Wrapper for Powershell activated"

0 commit comments

Comments
 (0)