summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-11-08 14:34:36 -0500
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-11-08 14:34:36 -0500
commit0244d10e313ff57265b3b910c4b406c5112aa9c3 (patch)
tree0f1b8d42bc59a5d66ccc671d538173aec9b6bf5e /src
parent632a2cb0ad49bba32cc1c0c5451a46f57170de63 (diff)
downloadbcfg2-0244d10e313ff57265b3b910c4b406c5112aa9c3.tar.gz
bcfg2-0244d10e313ff57265b3b910c4b406c5112aa9c3.tar.bz2
bcfg2-0244d10e313ff57265b3b910c4b406c5112aa9c3.zip
Packages: fixed yum cachefiles property
Diffstat (limited to 'src')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Packages/Yum.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Packages/Yum.py b/src/lib/Bcfg2/Server/Plugins/Packages/Yum.py
index 59e7a206e..a7129fc7a 100644
--- a/src/lib/Bcfg2/Server/Plugins/Packages/Yum.py
+++ b/src/lib/Bcfg2/Server/Plugins/Packages/Yum.py
@@ -357,7 +357,7 @@ class YumCollection(Collection):
def cachefiles(self):
""" A list of the full path to all cachefiles used by this
collection."""
- cachefiles = set(Collection.cachefiles(self))
+ cachefiles = set(Collection.cachefiles.fget(self))
if self.cachefile:
cachefiles.add(self.cachefile)
return list(cachefiles)