summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/gcp.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/gcp.py')
-rw-r--r--bitbake/lib/bb/fetch2/gcp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/gcp.py b/bitbake/lib/bb/fetch2/gcp.py
index 2ee9ed2194..268267b7ac 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 = d.expand(urllib.parse.unquote(ud.basename)) 49 ud.localfile = urllib.parse.unquote(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