Merge pull request #9114 from uranusjr/new-resolver-report-format

Make sure periods are followed by a space
This commit is contained in:
Pradyun Gedam 2020-11-10 18:24:04 +05:30 committed by GitHub
commit a88c84dfae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 11 deletions

View File

@ -22,21 +22,21 @@ class PipReporter(BaseReporter):
self._messages_at_backtrack = { self._messages_at_backtrack = {
1: ( 1: (
"pip is looking at multiple versions of this package to determine " "pip is looking at multiple versions of this package to "
"which version is compatible with other requirements. " "determine which version is compatible with other "
"This could take a while." "requirements. This could take a while."
), ),
8: ( 8: (
"pip is looking at multiple versions of this package to determine " "pip is looking at multiple versions of this package to "
"which version is compatible with other requirements. " "determine which version is compatible with other "
"This could take a while." "requirements. This could take a while."
), ),
13: ( 13: (
"This is taking longer than usual. You might need to provide the " "This is taking longer than usual. You might need to provide "
"dependency resolver with stricter constraints to reduce runtime." "the dependency resolver with stricter constraints to reduce "
"If you want to abort this run, you can press Ctrl + C to do so." "runtime. If you want to abort this run, you can press "
"To improve how pip performs, tell us what happened here: " "Ctrl + C to do so. To improve how pip performs, tell us what "
"https://pip.pypa.io/surveys/backtracking" "happened here: https://pip.pypa.io/surveys/backtracking"
) )
} }