summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorJarl Stefansson <jarl@sdelements.com>2014-01-02 15:44:44 -0500
committerJarl Stefansson <jarl@sdelements.com>2014-01-02 15:44:44 -0500
commit784a8bca85023490169bf9663740419caea776a0 (patch)
tree62889d2a123d9922a1a5c2ac153e807d62487fc0 /manifests
parenta49582f22a71baf746ff06c10850a207a99a9750 (diff)
Fix syntax error in conditional statement
Diffstat (limited to 'manifests')
-rw-r--r--manifests/virtualenv.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/virtualenv.pp b/manifests/virtualenv.pp
index 7b39212..3e61e1f 100644
--- a/manifests/virtualenv.pp
+++ b/manifests/virtualenv.pp
@@ -113,7 +113,7 @@ define python::virtualenv (
# Python 2.6 and older don't support setuptools/distribute > 0.8 which is required
# for pip wheel support, pip therefor requires --no-use-wheel flag if the
# version is newer than 1.4.1 when they added wheels
- if (( versioncmp($::python_version,'2.6') > 0 and ( versioncmp($::pip_version,'1.4.1') > 0)) {
+ if (( versioncmp($::python_version,'2.6') > 0 ) and ( versioncmp($::pip_version,'1.4.1') > 0)) {
$wheel_support_flag = '--no-use-wheel'
} else {
$wheel_support_flag = ''