diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-04-08 15:16:17 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:32 +0100 |
commit | bbc565e8258e9cb92ff3f10c5afb2208ef90652a (patch) | |
tree | f7196c15669ed26c9ea62fdf05b2eb05c9724557 /bitbake/lib | |
parent | 51f5346f296811507a9985ed262411ad6cc03e53 (diff) | |
download | poky-bbc565e8258e9cb92ff3f10c5afb2208ef90652a.tar.gz |
Drop some unused classes
(Bitbake rev: 5cc47a49518c69c94f8b78e9dda6d542ba17b1e8)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/__init__.py | 1 | ||||
-rw-r--r-- | bitbake/lib/bb/data.py | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py index 7e2933eb89..c0d1b3041e 100644 --- a/bitbake/lib/bb/__init__.py +++ b/bitbake/lib/bb/__init__.py | |||
@@ -84,6 +84,5 @@ def fatal(*args): | |||
84 | 84 | ||
85 | # For compatibility | 85 | # For compatibility |
86 | from bb.fetch import MalformedUrl, encodeurl, decodeurl | 86 | from bb.fetch import MalformedUrl, encodeurl, decodeurl |
87 | from bb.data import VarExpandError | ||
88 | from bb.utils import mkdirhier, movefile, copyfile, which | 87 | from bb.utils import mkdirhier, movefile, copyfile, which |
89 | from bb.utils import vercmp_string as vercmp | 88 | from bb.utils import vercmp_string as vercmp |
diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py index e71ad6b9c0..6991d67ff8 100644 --- a/bitbake/lib/bb/data.py +++ b/bitbake/lib/bb/data.py | |||
@@ -47,9 +47,6 @@ sys.path.insert(0, path) | |||
47 | from bb import data_smart | 47 | from bb import data_smart |
48 | import bb | 48 | import bb |
49 | 49 | ||
50 | class VarExpandError(Exception): | ||
51 | pass | ||
52 | |||
53 | _dict_type = data_smart.DataSmart | 50 | _dict_type = data_smart.DataSmart |
54 | 51 | ||
55 | def init(): | 52 | def init(): |