Merge branch 'master' of github.com:pradyunsg/pip into vendoring/enable-c-libs

This commit is contained in:
Pradyun Gedam 2017-12-23 17:18:33 +05:30
commit f30aea2c01
No known key found for this signature in database
GPG Key ID: DA17C4B29CB32E4B
5 changed files with 7 additions and 5 deletions

View File

@ -1,7 +1,7 @@
Quickstart
==========
First, :doc:`Install pip <installing>`.
First, :doc:`install pip <installing>`.
Install a package from `PyPI`_:
@ -11,8 +11,9 @@ Install a package from `PyPI`_:
[...]
Successfully installed SomePackage
Install a package already downloaded from `PyPI`_ or got elsewhere.
This is useful if the target machine does not have a network connection:
Install a package that's already been downloaded from `PyPI`_ or
obtained from elsewhere. This is useful if the target machine does not have a
network connection:
::

1
news/4908.bugfix Normal file
View File

@ -0,0 +1 @@
Replaced typo mistake in subversion support.

View File

@ -130,8 +130,8 @@ class Subversion(VersionControl):
dirurl, localrev = self._get_svn_url_rev(base)
if base == location:
base_url = dirurl + '/' # save the root url
elif not dirurl or not dirurl.startswith(base_url):
base = dirurl + '/' # save the root url
elif not dirurl or not dirurl.startswith(base):
dirs[:] = []
continue # not part of the same svn tree, skip it
revision = max(revision, localrev)