From 5277d5a7e3f8fc9c4584b5e02f5c3d32b0713da0 Mon Sep 17 00:00:00 2001 From: Jonathon Belotti Date: Tue, 22 Jun 2021 22:54:23 +1000 Subject: [PATCH] remove reference to 'rules_python_external', the original provinence of code --- python/pip_install/extract_wheels/lib/namespace_pkgs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pip_install/extract_wheels/lib/namespace_pkgs.py b/python/pip_install/extract_wheels/lib/namespace_pkgs.py index 30729fe132..da529de11f 100644 --- a/python/pip_install/extract_wheels/lib/namespace_pkgs.py +++ b/python/pip_install/extract_wheels/lib/namespace_pkgs.py @@ -68,7 +68,7 @@ def add_pkgutil_style_namespace_pkg_init(dir_path: str) -> None: ns_pkg_init_f.write( textwrap.dedent( """\ - # __path__ manipulation added by rules_python_external to support namespace pkgs. + # __path__ manipulation added by bazelbuild/rules_python to support namespace pkgs. __path__ = __import__('pkgutil').extend_path(__path__, __name__) """ )