diff --git a/cdist/conf/type/__pyvenv/man.text b/cdist/conf/type/__pyvenv/man.text
index 3b1072f1..80934710 100755
--- a/cdist/conf/type/__pyvenv/man.text
+++ b/cdist/conf/type/__pyvenv/man.text
@@ -10,15 +10,16 @@ cdist-type__pyvenv - Create or remove python virtual environment
 
 DESCRIPTION
 -----------
-This cdist type allows you to create or remove python virtual environment using pyvenv.
-It assumes python >= 3.3 is already installed. Concrete package depends on concrete OS
-and/or OS version/distribution.
+This cdist type allows you to create or remove python virtual
+environment using pyvenv.
+It assumes pyvenv is already installed. Concrete package depends
+on concrete OS and/or OS version/distribution.
 Ensure this for e.g. in your init manifest as in the following example:
 --------------------------------------------------------------------------------
 case "$__target_host" in
     localhost)
-        __package python3 --state present
-        require="__package/python3" __pyvenv /home/darko/testenv --owner darko --group darko --mode 740 --state present
+        __package python3-venv --state present
+        require="__package/python3-venv" __pyvenv /home/darko/testenv --owner darko --group darko --mode 740 --state present
     ;;
 --------------------------------------------------------------------------------
 
diff --git a/cdist/conf/type/__pyvenv/manifest b/cdist/conf/type/__pyvenv/manifest
index 3f0fbb17..3e41ad04 100755
--- a/cdist/conf/type/__pyvenv/manifest
+++ b/cdist/conf/type/__pyvenv/manifest
@@ -18,7 +18,7 @@
 # along with cdist. If not, see <http://www.gnu.org/licenses/>.
 #
 
-# It assumes python >= 3.3 is already installed. Concrete packages
+# It assumes pyvenv is already installed. Concrete packages
 # or installation procedures depend on concrete OS and/or OS
 # version/distribution.