aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-12-22 21:55:52 +1300
committerPaul Eggleton <paul.eggleton@linux.intel.com>2017-12-22 21:57:23 +1300
commit4be9935b6c0ca5fc0d5437323f983cb0582bed7a (patch)
tree1367680066531cd938998232ab02a543b92297b8
parent3cf8bda5e4d4a345793aa72be97e94c41520ec01 (diff)
downloadopenembedded-core-contrib-paule/oetypes-fix.tar.gz
lib/oe/patch: add missing importpaule/oetypes-fix
This module refers to oe.types, so it needs to actually import oe.types. Fixes errors when parsing certain OE-Core recipes within the layer index update script. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
-rw-r--r--meta/lib/oe/patch.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py
index f1ab3dd809..584bf6c05f 100644
--- a/meta/lib/oe/patch.py
+++ b/meta/lib/oe/patch.py
@@ -1,4 +1,5 @@
import oe.path
+import oe.types
class NotFoundError(bb.BBHandledException):
def __init__(self, path):