diff options
author | Christopher Larson <chris_larson@mentor.com> | 2012-05-09 18:35:48 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-11 11:54:26 +0100 |
commit | 4a2147f54fc386ed3b9fdc9481ae95a358130854 (patch) | |
tree | 2bb868e0cd01b3ce04de5d08cec53677b8801116 | |
parent | e2c58b40d1f6b2d068d24a47b1dcfd16753d2c32 (diff) | |
download | poky-4a2147f54fc386ed3b9fdc9481ae95a358130854.tar.gz |
runqueue: drop unnecessary keys() in runqueue_process_waitpid
(Bitbake rev: d03dc07dea2f4e594fdbe4abe618670fe628a7c9)
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 8828e4af6b..462c685d2f 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1064,7 +1064,7 @@ class RunQueueExecute: | |||
1064 | del self.build_pipes[pid] | 1064 | del self.build_pipes[pid] |
1065 | 1065 | ||
1066 | # self.build_stamps[pid] may not exist when use shared work directory. | 1066 | # self.build_stamps[pid] may not exist when use shared work directory. |
1067 | if pid in self.build_stamps.keys(): | 1067 | if pid in self.build_stamps: |
1068 | del self.build_stamps[pid] | 1068 | del self.build_stamps[pid] |
1069 | 1069 | ||
1070 | if status != 0: | 1070 | if status != 0: |