summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarl Stefansson <jarl@sdelements.com>2013-11-08 11:56:04 -0500
committerJarl Stefansson <jarl@sdelements.com>2013-11-08 11:56:04 -0500
commit0f83afd92aeea4af35795f881f9eaa408d4082c3 (patch)
treefc15c8c1351ac42ffacdd1b72f42735d0803c15b
parentdf103dd55f719de52b17f059557593bf6e383cb1 (diff)
Fix more syntax
-rw-r--r--manifests/virtualenv.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/virtualenv.pp b/manifests/virtualenv.pp
index 282742b..95fe1f7 100644
--- a/manifests/virtualenv.pp
+++ b/manifests/virtualenv.pp
@@ -96,7 +96,7 @@ define python::virtualenv (
# 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 = ''