mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
gitpkgv: Fix python deprecation warning
Fixes DeprecationWarning: 'pipes' is deprecated and slated for removal in Python 3.13 pipes is an alias for shlex therefore switch to using shlex Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
f3cdc9d7ee
commit
5d33d2c530
|
|
@ -56,7 +56,7 @@ def gitpkgv_drop_tag_prefix(d, version):
|
|||
def get_git_pkgv(d, use_tags):
|
||||
import os
|
||||
import bb
|
||||
from pipes import quote
|
||||
from shlex import quote
|
||||
|
||||
src_uri = d.getVar('SRC_URI').split()
|
||||
fetcher = bb.fetch2.Fetch(src_uri, d)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user