Skip to content

Commit

Permalink
Fix more syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarl Stefansson committed Nov 8, 2013
1 parent df103dd commit 0f83afd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/virtualenv.pp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
# and the flag --no-site-packages had to be passed to do the opposite
if (( versioncmp($::virtualenv_version,'1.7') > 0 ) and ( $systempkgs == true )) {
$system_pkgs_flag = '--system-site-packages'
} elsif (( versioncmp($::virtualenv_version,'1.7') < { 0 ) and ( $systempkgs == false )) {
} elsif (( versioncmp($::virtualenv_version,'1.7') < 0 ) and ( $systempkgs == false )) {
$system_pkgs_flag = '--no-site-packages'
} else {
$system_pkgs_flag = ''
Expand Down

0 comments on commit 0f83afd

Please sign in to comment.