summaryrefslogtreecommitdiff
path: root/poky/meta/lib/oe/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'poky/meta/lib/oe/utils.py')
-rw-r--r--poky/meta/lib/oe/utils.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/poky/meta/lib/oe/utils.py b/poky/meta/lib/oe/utils.py
index 14a7d07ef0..c9c7a47041 100644
--- a/poky/meta/lib/oe/utils.py
+++ b/poky/meta/lib/oe/utils.py
@@ -482,19 +482,6 @@ def get_multilib_datastore(variant, d):
localdata.setVar("MLPREFIX", "")
return localdata
-class ImageQAFailed(Exception):
- def __init__(self, description, name=None, logfile=None):
- self.description = description
- self.name = name
- self.logfile=logfile
-
- def __str__(self):
- msg = 'Function failed: %s' % self.name
- if self.description:
- msg = msg + ' (%s)' % self.description
-
- return msg
-
def sh_quote(string):
import shlex
return shlex.quote(string)