summaryrefslogtreecommitdiffstats
path: root/lib/bb/data.py
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2009-07-19 09:49:36 -0700
committerChris Larson <chris_larson@mentor.com>2010-02-19 11:04:39 -0700
commite616483b237dafff7f90ba1c09e9ee7c383a2e47 (patch)
tree5cef0af656553915671afcd8f4574bca6235498b /lib/bb/data.py
parentf3afb79ecac30d973a3c62ff6baf28d8b7388a24 (diff)
downloadbitbake-e616483b237dafff7f90ba1c09e9ee7c383a2e47.tar.gz
Move MalformedUrl, VarExpandError into appropriate modules.
Signed-off-by: Chris Larson <clarson@kergoth.com>
Diffstat (limited to 'lib/bb/data.py')
-rw-r--r--lib/bb/data.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/bb/data.py b/lib/bb/data.py
index d3058b9a1..c3bb1a1f4 100644
--- a/lib/bb/data.py
+++ b/lib/bb/data.py
@@ -47,6 +47,9 @@ sys.path.insert(0,path)
from bb import data_smart
import bb
+class VarExpandError(Exception):
+ pass
+
_dict_type = data_smart.DataSmart
def init():