From 001c485337e4c6795e15c57d2bc9ab7ca8ca1381 Mon Sep 17 00:00:00 2001 From: shixiuguo Date: Tue, 25 Oct 2022 17:00:44 +0800 Subject: [PATCH] update update-imported-docs/update-imported-docs.py --- update-imported-docs/update-imported-docs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-imported-docs/update-imported-docs.py b/update-imported-docs/update-imported-docs.py index ecc88a5573..0143c0d9c0 100755 --- a/update-imported-docs/update-imported-docs.py +++ b/update-imported-docs/update-imported-docs.py @@ -40,7 +40,7 @@ error_msgs = [] # pip should be installed when Python is installed, but just in case... if not (shutil.which('pip') or shutil.which('pip3')): error_msgs.append( - "Install pip so you can install PyYAML. https://pip.pypa.io/en/stable/installing") + "Install pip so you can install PyYAML. https://pip.pypa.io/en/stable/installation") reqs = subprocess.check_output([sys.executable, '-m', 'pip', 'freeze']) installed_packages = [r.decode().split('==')[0] for r in reqs.split()]