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.
This commit is contained in:
Colin Watson 2015-10-16 05:20:03 +01:00
parent 461b7aaad3
commit 4a67f40a41
1 changed files with 1 additions and 1 deletions

View File

@ -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