diff --git a/manifests/mod/python.pp b/manifests/mod/python.pp
index 0997887..431dbbe 100644
--- a/manifests/mod/python.pp
+++ b/manifests/mod/python.pp
@@ -20,7 +20,7 @@ class httpd::mod::python {
     require => Package['httpd'];
   }
 
-  httpd_mod { 'python': ensure => present; }
+  httpd::mod { 'python': ensure => present; }
 
 }
 
diff --git a/manifests/mod/wsgi.pp b/manifests/mod/wsgi.pp
index fef40e3..f43641f 100644
--- a/manifests/mod/wsgi.pp
+++ b/manifests/mod/wsgi.pp
@@ -20,7 +20,7 @@ class httpd::mod::wsgi {
     require => Package['httpd'];
   }
 
-  httpd_mod { 'wsgi': ensure => present; }
+  httpd::mod { 'wsgi': ensure => present; }
 
 }
 
diff --git a/manifests/python.pp b/manifests/python.pp
index 204e831..faf173f 100644
--- a/manifests/python.pp
+++ b/manifests/python.pp
@@ -20,6 +20,6 @@ class httpd::python {
     ensure => present,
     name   => $httpd::params::mod_python_package,
   }
-  httpd_mod { 'python': ensure => present, }
+  httpd::mod { 'python': ensure => present, }
 
 }
diff --git a/manifests/ssl.pp b/manifests/ssl.pp
index e3abc4c..2e1569a 100644
--- a/manifests/ssl.pp
+++ b/manifests/ssl.pp
@@ -25,7 +25,7 @@ class httpd::ssl {
       }
     }
     'ubuntu', 'debian': {
-      httpd_mod { 'ssl': ensure => present, }
+      httpd::mod { 'ssl': ensure => present, }
     }
     default: {
       fail( "${::operatingsystem} not defined in httpd::ssl.")