diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-20 12:52:53 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-21 13:10:33 +0100 |
commit | a7d5c5700658fc00517bcc264c94249090c34195 (patch) | |
tree | aefb626f86a7e0b9ae11ef85b2b47c32ea1d194d | |
parent | 20649e95ede723feb8c766bc2f76bc6ce2fd1500 (diff) | |
download | poky-a7d5c5700658fc00517bcc264c94249090c34195.tar.gz |
bitbake: fetch2: Simplify some looping constructs in uri_replace()
(From Poky rev: c6bd25150a842a530f958d7233b15ae50d42c6c8)
(Bitbake rev: 075296f3e5e5e3662290a888a6ba11229a36b95a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 78adce2f29..ce2fb23b48 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -191,8 +191,7 @@ def uri_replace(ud, uri_find, uri_replace, d): | |||
191 | uri_replace_decoded = list(decodeurl(uri_replace)) | 191 | uri_replace_decoded = list(decodeurl(uri_replace)) |
192 | logger.debug(2, "For url %s comparing %s to %s" % (uri_decoded, uri_find_decoded, uri_replace_decoded)) | 192 | logger.debug(2, "For url %s comparing %s to %s" % (uri_decoded, uri_find_decoded, uri_replace_decoded)) |
193 | result_decoded = ['', '', '', '', '', {}] | 193 | result_decoded = ['', '', '', '', '', {}] |
194 | for i in uri_find_decoded: | 194 | for loc, i in enumerate(uri_find_decoded): |
195 | loc = uri_find_decoded.index(i) | ||
196 | result_decoded[loc] = uri_decoded[loc] | 195 | result_decoded[loc] = uri_decoded[loc] |
197 | if isinstance(i, basestring): | 196 | if isinstance(i, basestring): |
198 | if (re.match(i, uri_decoded[loc])): | 197 | if (re.match(i, uri_decoded[loc])): |
@@ -200,7 +199,7 @@ def uri_replace(ud, uri_find, uri_replace, d): | |||
200 | result_decoded[loc] = "" | 199 | result_decoded[loc] = "" |
201 | else: | 200 | else: |
202 | result_decoded[loc] = re.sub(i, uri_replace_decoded[loc], uri_decoded[loc]) | 201 | result_decoded[loc] = re.sub(i, uri_replace_decoded[loc], uri_decoded[loc]) |
203 | if uri_find_decoded.index(i) == 2: | 202 | if loc == 2: |
204 | basename = None | 203 | basename = None |
205 | if ud.mirrortarball: | 204 | if ud.mirrortarball: |
206 | basename = os.path.basename(ud.mirrortarball) | 205 | basename = os.path.basename(ud.mirrortarball) |