From c036d1a5a0d90f8bbc274613d7ba800166fd46f1 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 10 Jan 2011 13:22:30 +0000 Subject: [PATCH] bitbake/codeparser: Fix import to match upstream bitbake Signed-off-by: Richard Purdie --- bitbake/lib/bb/codeparser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bitbake/lib/bb/codeparser.py b/bitbake/lib/bb/codeparser.py index 1d3557cd6d..06409319e1 100644 --- a/bitbake/lib/bb/codeparser.py +++ b/bitbake/lib/bb/codeparser.py @@ -4,7 +4,8 @@ import logging import os.path import bb.utils, bb.data from itertools import chain -from bb.pysh import pyshyacc, pyshlex +from pysh import pyshyacc, pyshlex + logger = logging.getLogger('BitBake.CodeParser') PARSERCACHE_VERSION = 2