From 4a67f40a415fa7a97bc2dc829ce64fe5bfe55c2f Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Fri, 16 Oct 2015 05:20:03 +0100 Subject: [PATCH] Fix example of using setuptools find_links setuptools.package_index.local_open is used for file: URLs, and only handles directories if the URL ends with a slash. Add the trailing slash to pip's documentation to reduce confusion. --- docs/reference/pip_install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/pip_install.rst b/docs/reference/pip_install.rst index 489e0b09f..ed62c5718 100644 --- a/docs/reference/pip_install.rst +++ b/docs/reference/pip_install.rst @@ -513,7 +513,7 @@ To have the dependency located from a local directory and not crawl PyPI, add th [easy_install] allow_hosts = '' - find_links = file:///path/to/local/archives + find_links = file:///path/to/local/archives/ Build System Interface