diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2012-01-06 17:02:28 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-06 15:55:56 +0000 |
commit | 4c30a7e9a3fefca2b38a9ce813e67329bdd6e825 (patch) | |
tree | 85e6ba2f0fde730306aa0633f2d6a25bfffa71cd /bitbake/lib/bb/cooker.py | |
parent | e69e5a7e0ba328f29faaeacf815690f2ca9daf41 (diff) | |
download | poky-4c30a7e9a3fefca2b38a9ce813e67329bdd6e825.tar.gz |
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.
(Bitbake rev: 92fec2788e33d301cc63848901bc6adc764a2ecf)
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 1faf821aa5..102d40fda0 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -34,8 +34,8 @@ from cStringIO import StringIO | |||
34 | from contextlib import closing | 34 | from contextlib import closing |
35 | from functools import wraps | 35 | from functools import wraps |
36 | from collections import defaultdict | 36 | from collections import defaultdict |
37 | import bb, bb.exceptions | 37 | import bb, bb.exceptions, bb.command |
38 | from bb import utils, data, parse, event, cache, providers, taskdata, command, runqueue | 38 | from bb import utils, data, parse, event, cache, providers, taskdata, runqueue |
39 | 39 | ||
40 | logger = logging.getLogger("BitBake") | 40 | logger = logging.getLogger("BitBake") |
41 | collectlog = logging.getLogger("BitBake.Collection") | 41 | collectlog = logging.getLogger("BitBake.Collection") |