diff options
author | Sven Schwermer <sven.schwermer@disruptive-technologies.com> | 2024-04-18 15:41:47 +0200 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2024-05-29 07:50:00 -0700 |
commit | c5df9c829a549ca002c36afd6bdf23639831502e (patch) | |
tree | e8dda7892dcd0d88691f3a424c534eacc49f4b8f /bitbake | |
parent | 74ea9601139ba74ebd05184418289bcbabc15754 (diff) | |
download | poky-c5df9c829a549ca002c36afd6bdf23639831502e.tar.gz |
bitbake: fetch2/gcp: Add missing runfetchcmd import
This adds the missing import. This bug was introduced with 1ab1d36c.
(Bitbake rev: b5159c0373e2e7d403aed16e096ad655f38b1fa7)
Signed-off-by: Sven Schwermer <sven.schwermer@disruptive-technologies.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/fetch2/gcp.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/gcp.py b/bitbake/lib/bb/fetch2/gcp.py index f40ce2eaa5..eb3e0c6a6b 100644 --- a/bitbake/lib/bb/fetch2/gcp.py +++ b/bitbake/lib/bb/fetch2/gcp.py | |||
@@ -23,6 +23,7 @@ import urllib.parse, urllib.error | |||
23 | from bb.fetch2 import FetchMethod | 23 | from bb.fetch2 import FetchMethod |
24 | from bb.fetch2 import FetchError | 24 | from bb.fetch2 import FetchError |
25 | from bb.fetch2 import logger | 25 | from bb.fetch2 import logger |
26 | from bb.fetch2 import runfetchcmd | ||
26 | 27 | ||
27 | class GCP(FetchMethod): | 28 | class GCP(FetchMethod): |
28 | """ | 29 | """ |