From 81ff3a90f8f4ee0a00c439be9a1438de6c2ec168 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 12 May 2009 16:53:22 +0100 Subject: bitbake: Update to work without warnings with python 2.6 Signed-off-by: Richard Purdie --- bitbake/lib/bb/cache.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'bitbake/lib/bb/cache.py') diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index 1001012e0..272619386 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py @@ -31,7 +31,6 @@ import os, re import bb.data import bb.utils -from sets import Set try: import cPickle as pickle @@ -525,6 +524,6 @@ class CacheData: (set elsewhere) """ self.ignored_dependencies = [] - self.world_target = Set() + self.world_target = set() self.bbfile_priority = {} self.bbfile_config_priorities = [] -- cgit v1.2.3