From 84f02831a71781b734055aedc6e630e86bc6dd48 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Thu, 18 Nov 2010 11:14:27 -0700 Subject: cache: use new style classes (Bitbake rev: e084430446be2544dd1a6b627088f888c37cc7f0) Signed-off-by: Chris Larson Signed-off-by: Richard Purdie --- bitbake/lib/bb/cache.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'bitbake/lib/bb/cache.py') diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index 05d8b1e47e..0734c7e771 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py @@ -45,7 +45,8 @@ except ImportError: __cache_version__ = "132" -class Cache: + +class Cache(object): """ BitBake Cache implementation """ @@ -502,11 +503,7 @@ def init(cooker): return Cache(cooker.configuration.data) - -#============================================================================# -# CacheData -#============================================================================# -class CacheData: +class CacheData(object): """ The data structures we compile from the cached data """ -- cgit v1.2.3-54-g00ecf