From patchwork Fri Jan 6 09:02:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel,10/16] cooker: remove command import in cooker.py Date: Fri, 06 Jan 2012 09:02:28 -0000 From: Dongxiao Xu X-Patchwork-Id: 18621 Message-Id: <17a8e22b1f2531d6559dbbe07419e5e865d1b2e5.1325840050.git.dongxiao.xu@intel.com> To: bitbake-devel@lists.openembedded.org There is no direct use of command in cooker.py, and it is using bb.command instead. Remove command in the import list. This fixes a problem of embedded import between command.py and cooker.py. Signed-off-by: Dongxiao Xu --- lib/bb/cooker.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py index b495eef..bfd61a9 100644 --- a/lib/bb/cooker.py +++ b/lib/bb/cooker.py @@ -34,8 +34,8 @@ from cStringIO import StringIO from contextlib import closing from functools import wraps from collections import defaultdict -import bb, bb.exceptions -from bb import utils, data, parse, event, cache, providers, taskdata, command, runqueue +import bb, bb.exceptions, bb.command +from bb import utils, data, parse, event, cache, providers, taskdata, runqueue logger = logging.getLogger("BitBake") collectlog = logging.getLogger("BitBake.Collection")