summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Larson <chris_larson@mentor.com>2012-05-09 18:35:48 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-11 10:03:31 +0100
commitd03dc07dea2f4e594fdbe4abe618670fe628a7c9 (patch)
tree03ad4f2fd071aadd3b7b2109a3ecf1170ce88f57
parent84ea614bc56d35a414eb5bf5658891b340bfc569 (diff)
downloadbitbake-d03dc07dea2f4e594fdbe4abe618670fe628a7c9.tar.gz
runqueue: drop unnecessary keys() in runqueue_process_waitpid
Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 8828e4af6..462c685d2 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -1064,7 +1064,7 @@ class RunQueueExecute:
del self.build_pipes[pid]
# self.build_stamps[pid] may not exist when use shared work directory.
- if pid in self.build_stamps.keys():
+ if pid in self.build_stamps:
del self.build_stamps[pid]
if status != 0: