[bitbake-devel] Dongxiao Xu : cooker: remove command import in cooker.py

git at git.openembedded.org git at git.openembedded.org
Fri Jan 6 16:02:57 UTC 2012


Module: bitbake.git
Branch: master
Commit: 92fec2788e33d301cc63848901bc6adc764a2ecf
URL:    http://git.openembedded.org/?p=bitbake.git&a=commit;h=92fec2788e33d301cc63848901bc6adc764a2ecf

Author: Dongxiao Xu <dongxiao.xu at intel.com>
Date:   Fri Jan  6 17:02:28 2012 +0800

cooker: remove command import in cooker.py

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 <dongxiao.xu at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 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 1faf821..102d40f 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")





More information about the bitbake-devel mailing list