From 07f5bd91081261c0e6fb81397b43a27b14f19965 Mon Sep 17 00:00:00 2001 From: AutomatedTester Date: Mon, 28 Feb 2022 10:16:56 +0000 Subject: [PATCH] [py] Stripping path is leaving a leading /. Fixes #10022 --- py/BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/BUILD.bazel b/py/BUILD.bazel index d9cdb3da90972..d1496a38e2cd6 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -135,7 +135,7 @@ py_wheel( "trio-websocket~=0.9", ], strip_path_prefixes = [ - "py", + "py/", ], version = SE_VERSION, visibility = ["//visibility:public"],