diff options
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(): |