diff options
author | Sergey Stankevich <stankevich@users.noreply.github.com> | 2014-04-24 16:16:12 -0400 |
---|---|---|
committer | Sergey Stankevich <stankevich@users.noreply.github.com> | 2014-04-24 16:16:12 -0400 |
commit | 1331afbc4851eab88709200d1c63ba19d377e4ea (patch) | |
tree | 55cb744a7df9d4d68408fa2d82b857f509c7d6ee | |
parent | e1e3f8aedb0ac8f4f2fe5d173ded6b79558753ef (diff) | |
parent | 8268d348d7c4653a3120345e8796e9a888f5d613 (diff) |
Merge pull request #82 from invernizzi/patch-1
Fixed $(ensure typo in pip.pp
-rw-r--r-- | manifests/pip.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/pip.pp b/manifests/pip.pp index 637960b..a0c0eb4 100644 --- a/manifests/pip.pp +++ b/manifests/pip.pp @@ -101,7 +101,7 @@ define python::pip ( fail('python::pip cannot provide install_args with ensure => absent') } - if $(ensure == present) and ($uninstall_args != '') { + if ($ensure == present) and ($uninstall_args != '') { fail('python::pip cannot provide uninstall_args with ensure => present') } |