Merge pull request #3317 from scop/spelling

Spelling fixes
This commit is contained in:
Xavier Fernandez 2015-12-29 23:19:56 +01:00
commit 034232f0e0
6 changed files with 7 additions and 7 deletions

View File

@ -428,7 +428,7 @@
directory lower. (:pull:`1933`)
* **BACKWARD INCOMPATIBLE** The ability to install files over the FTP protocol
was accidently lost in pip 1.5 and it has now been decided to not restore
was accidentally lost in pip 1.5 and it has now been decided to not restore
that ability.
* **BACKWARD INCOMPATIBLE** PEP 440 is now fully implemented, this means that

View File

@ -105,7 +105,7 @@ Release Process
(``twine upload -s dist/*``). The upload should include GPG signatures of
the distribution files.
7. Regenerate the ``get-pip.py`` script by running
``invoke generate.installer`` on the master branch, and commiting the
``invoke generate.installer`` on the master branch, and committing the
results.
8. Merge the ``master`` branch into the ``develop`` branch.
9. Push all of the changes.

View File

@ -29,7 +29,7 @@ _log_state.indentation = 0
def indent_log(num=2):
"""
A context manager which will cause the log output to be indented for any
log messages emited inside it.
log messages emitted inside it.
"""
_log_state.indentation += num
try:

View File

@ -327,7 +327,7 @@ class VersionControl(object):
if e.errno == errno.ENOENT:
raise BadCommand('Cannot find command %r' % self.name)
else:
raise # re-raise exception if a different error occured
raise # re-raise exception if a different error occurred
@classmethod
def controls_location(cls, location):

View File

@ -7,7 +7,7 @@ from pip.commands import commands_dict as commands
from mock import Mock
def test_run_method_should_return_sucess_when_finds_command_name():
def test_run_method_should_return_success_when_finds_command_name():
"""
Test HelpCommand.run for existing command
"""
@ -18,7 +18,7 @@ def test_run_method_should_return_sucess_when_finds_command_name():
assert status == SUCCESS
def test_run_method_should_return_sucess_when_command_name_not_specified():
def test_run_method_should_return_success_when_command_name_not_specified():
"""
Test HelpCommand.run when there are no args
"""

View File

@ -135,7 +135,7 @@ def test_search_missing_argument(script):
@pytest.mark.network
def test_run_method_should_return_sucess_when_find_packages():
def test_run_method_should_return_success_when_find_packages():
"""
Test SearchCommand.run for found package
"""