diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-01 23:33:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-01 23:33:19 +0000 |
commit | 05954ef4d7d882f34e2bb1f3bc44ad6f80c11d4c (patch) | |
tree | e676eb3d940051ea6c9141ce0d5ac9525b027e48 | |
parent | c7c4c6678b64192eb5eccc8c1385b6d9262f8df7 (diff) | |
download | poky-05954ef4d7d882f34e2bb1f3bc44ad6f80c11d4c.tar.gz |
bitbake/fetch2: Ensure the local revision counter takes a default value of 0, not None
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 9fe4eb2c02..d62ba81b36 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -864,7 +864,7 @@ class Fetch(object): | |||
864 | if uselocalcount: | 864 | if uselocalcount: |
865 | count = Fetch.localcount_internal_helper(ud, d) | 865 | count = Fetch.localcount_internal_helper(ud, d) |
866 | if count is None: | 866 | if count is None: |
867 | count = localcounts[key + '_count'] | 867 | count = localcounts[key + '_count'] or "0" |
868 | 868 | ||
869 | if last_rev == latest_rev: | 869 | if last_rev == latest_rev: |
870 | return str(count + "+" + latest_rev) | 870 | return str(count + "+" + latest_rev) |