summaryrefslogtreecommitdiff
path: root/manifests/pip.pp
diff options
context:
space:
mode:
authorJarl Stefansson <jarl@sdelements.com>2014-01-02 15:56:38 -0500
committerJarl Stefansson <jarl@sdelements.com>2014-01-02 15:56:38 -0500
commit10633ecbde7bd269e0e02d1ae5ba5313bc00c24b (patch)
tree15c93ea1d9537aa6f8d0b3717bb2a5e85eae296e /manifests/pip.pp
parent784a8bca85023490169bf9663740419caea776a0 (diff)
Fix handling of wheel support for initial pip
Diffstat (limited to 'manifests/pip.pp')
-rw-r--r--manifests/pip.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/pip.pp b/manifests/pip.pp
index 6c0425e..5849ca9 100644
--- a/manifests/pip.pp
+++ b/manifests/pip.pp
@@ -86,9 +86,9 @@ define python::pip (
default => "${url}#egg=${egg_name}",
}
- # 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
- # pip version is more recent thatn 1.4.1 but using an old python or
+ # Python 2.6 and older does not support setuptools/distribute > 0.8 which
+ # is required for pip wheel support, pip therefor requires --no-use-wheel flag
+ # if the # pip version is more recent than 1.4.1 but using an old python or
# setuputils/distribute version
# To check for this we test for wheel parameter using help and then using
# version, this makes sure we only use wheels if they are supported