summaryrefslogtreecommitdiffstats
path: root/py
diff options
context:
space:
mode:
Diffstat (limited to 'py')
-rw-r--r--py/mock/plugins/bind_mount.py2
-rw-r--r--py/mock/plugins/ccache.py2
-rw-r--r--py/mock/plugins/root_cache.py2
-rw-r--r--py/mock/plugins/yum_cache.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/py/mock/plugins/bind_mount.py b/py/mock/plugins/bind_mount.py
index e010f92..7b9cfe3 100644
--- a/py/mock/plugins/bind_mount.py
+++ b/py/mock/plugins/bind_mount.py
@@ -17,7 +17,7 @@ requires_api_version = "1.0"
# plugin entry point
def init(rootObj, conf):
- bind = BindMount(rootObj, conf)
+ BindMount(rootObj, conf)
# classes
class BindMount(object):
diff --git a/py/mock/plugins/ccache.py b/py/mock/plugins/ccache.py
index 27ec405..489f7a0 100644
--- a/py/mock/plugins/ccache.py
+++ b/py/mock/plugins/ccache.py
@@ -17,7 +17,7 @@ requires_api_version = "1.0"
# plugin entry point
def init(rootObj, conf):
- ccache = CCache(rootObj, conf)
+ CCache(rootObj, conf)
# classes
class CCache(object):
diff --git a/py/mock/plugins/root_cache.py b/py/mock/plugins/root_cache.py
index 8ed2492..6f54858 100644
--- a/py/mock/plugins/root_cache.py
+++ b/py/mock/plugins/root_cache.py
@@ -19,7 +19,7 @@ requires_api_version = "1.0"
# plugin entry point
def init(rootObj, conf):
- rootCache = RootCache(rootObj, conf)
+ RootCache(rootObj, conf)
# classes
class RootCache(object):
diff --git a/py/mock/plugins/yum_cache.py b/py/mock/plugins/yum_cache.py
index 5a4abc3..be2e44e 100644
--- a/py/mock/plugins/yum_cache.py
+++ b/py/mock/plugins/yum_cache.py
@@ -19,7 +19,7 @@ requires_api_version = "1.0"
# plugin entry point
def init(rootObj, conf):
- yumCache = YumCache(rootObj, conf)
+ YumCache(rootObj, conf)
# classes
class YumCache(object):