Skip to content

Commit

Permalink
Merge pull request #9114 from uranusjr/new-resolver-report-format
Browse files Browse the repository at this point in the history
Make sure periods are followed by a space
  • Loading branch information
pradyunsg authored Nov 10, 2020
2 parents a4f4bfb + 5ef05cf commit a88c84d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/pip/_internal/resolution/resolvelib/reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ def __init__(self):

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

Expand Down

0 comments on commit a88c84d

Please sign in to comment.