mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-24 12:15:52 +00:00
Merge pull request #84664 from seans3/python-string-replace
Fixes error in go_pkg()
This commit is contained in:
commit
6c75316474
@ -41,7 +41,8 @@ def go_pkg(pkg):
|
||||
...
|
||||
)
|
||||
"""
|
||||
return go_prefix + "/" + pkg.replace("staging/src/", "vendor/", maxsplit = 1)
|
||||
count = 1
|
||||
return go_prefix + "/" + pkg.replace("staging/src/", "vendor/", count)
|
||||
|
||||
def openapi_deps():
|
||||
deps = [
|
||||
@ -59,7 +60,7 @@ def applies(pkg, prefixes, default):
|
||||
return True
|
||||
return False
|
||||
|
||||
def gen_openapi(outs, output_pkg, include_pkgs=[], exclude_pkgs=[]):
|
||||
def gen_openapi(outs, output_pkg, include_pkgs = [], exclude_pkgs = []):
|
||||
"""Calls openapi-gen to produce the zz_generated.openapi.go file,
|
||||
which should be provided in outs.
|
||||
output_pkg should be set to the full go package name for this generated file.
|
||||
|
Loading…
Reference in New Issue
Block a user