diff options
Diffstat (limited to 'manifests/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') } |