diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-11 22:56:29 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-13 13:41:32 +0100 |
commit | df1546952bf13ba9fb811daf1472caadfa03eb38 (patch) | |
tree | 1eb928f34c565e29143d48d98c908a1e6ca4678c /bitbake/lib/bb/cache.py | |
parent | 7d06ec193ee5f4c4910365981ccbfc717d87b573 (diff) | |
download | poky-df1546952bf13ba9fb811daf1472caadfa03eb38.tar.gz |
bitbake: contrib/dump_cache.py, cache: Fix to use python 3 syntax
Some tweaks to use python 3 syntax in a python 2 compatible way.
(Bitbake rev: 322949c77dbaa4db01b5a43d85b39a2af67ba7b2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r-- | bitbake/lib/bb/cache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index af5b9fbc62..742fe55cfe 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py | |||
@@ -339,7 +339,7 @@ class Cache(object): | |||
339 | value = pickled.load() | 339 | value = pickled.load() |
340 | except Exception: | 340 | except Exception: |
341 | break | 341 | break |
342 | if self.depends_cache.has_key(key): | 342 | if key in self.depends_cache: |
343 | self.depends_cache[key].append(value) | 343 | self.depends_cache[key].append(value) |
344 | else: | 344 | else: |
345 | self.depends_cache[key] = [value] | 345 | self.depends_cache[key] = [value] |