diff options
author | Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com> | 2025-02-07 13:46:56 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-02-11 21:18:39 +0000 |
commit | 170dd77e4af60a4df8ffbf88882b4b158954a754 (patch) | |
tree | 1e2c7c0e925001911e7f8b49b436a63e272e2f51 /bitbake/lib/bb/fetch2/gcp.py | |
parent | f17c51c6959f740b279814624b40c65d69827637 (diff) | |
download | poky-170dd77e4af60a4df8ffbf88882b4b158954a754.tar.gz |
bitbake: fetch2: remove unnecessary unquote
The URI path is already unquoted. Remove the unnecessary unquote
function calls for URI path values.
(Bitbake rev: 3de12bbc28b5a4189b849720735cf3e268d3941d)
Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/gcp.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/gcp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/gcp.py b/bitbake/lib/bb/fetch2/gcp.py index 268267b7ac..86546d40bf 100644 --- a/bitbake/lib/bb/fetch2/gcp.py +++ b/bitbake/lib/bb/fetch2/gcp.py | |||
@@ -46,7 +46,7 @@ class GCP(FetchMethod): | |||
46 | else: | 46 | else: |
47 | ud.basename = os.path.basename(ud.path) | 47 | ud.basename = os.path.basename(ud.path) |
48 | 48 | ||
49 | ud.localfile = urllib.parse.unquote(ud.basename) | 49 | ud.localfile = ud.basename |
50 | 50 | ||
51 | def get_gcp_client(self): | 51 | def get_gcp_client(self): |
52 | from google.cloud import storage | 52 | from google.cloud import storage |