summaryrefslogtreecommitdiff
path: root/manifests/virtualenv.pp
diff options
context:
space:
mode:
authorJarl Stefansson <jarl@sdelements.com>2013-11-08 11:54:07 -0500
committerJarl Stefansson <jarl@sdelements.com>2013-11-08 11:54:07 -0500
commitdf103dd55f719de52b17f059557593bf6e383cb1 (patch)
tree10ed42c5756d1ceb5759f24b242deb6b73c25782 /manifests/virtualenv.pp
parent5f38429dbb30a119c8e7e4b646012075c862fa38 (diff)
Fix syntax error
Diffstat (limited to 'manifests/virtualenv.pp')
-rw-r--r--manifests/virtualenv.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/virtualenv.pp b/manifests/virtualenv.pp
index e5397da..282742b 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 = ''