aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-06-20 07:11:52 +0000
committerZac Medico <zmedico@gentoo.org>2007-06-20 07:11:52 +0000
commit872448034486064bf661f959e91aa86a4c17e764 (patch)
treef68b4459a63e4d8d3107b76abd8e408cba679642 /pym/portage/eclass_cache.py
parentIf a package is in the world set but it's not installed, go ahead and install... (diff)
downloadportage-872448034486064bf661f959e91aa86a4c17e764.tar.gz
portage-872448034486064bf661f959e91aa86a4c17e764.tar.bz2
portage-872448034486064bf661f959e91aa86a4c17e764.zip
Make all the classes inherit from object.
svn path=/main/trunk/; revision=6886
Diffstat (limited to 'pym/portage/eclass_cache.py')
-rw-r--r--pym/portage/eclass_cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/eclass_cache.py b/pym/portage/eclass_cache.py
index 40d4e360f..5a0d3c3ad 100644
--- a/pym/portage/eclass_cache.py
+++ b/pym/portage/eclass_cache.py
@@ -7,7 +7,7 @@ from portage.util import normalize_path, writemsg
import os, sys
from portage.data import portage_gid
-class cache:
+class cache(object):
"""
Maintains the cache information about eclasses used in ebuild.
"""