From 5ef05cfb1fb64e9da61be2950ce091bc5c43f0f8 Mon Sep 17 00:00:00 2001 From: Tzu-ping Chung Date: Tue, 10 Nov 2020 14:58:38 +0800 Subject: [PATCH] Make sure periods are followed by a space The strings are *delibrately* reformatted so line continuations occur in the middle of sentences. This helps me ensure all spaces are added properly. --- .../resolution/resolvelib/reporter.py | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/pip/_internal/resolution/resolvelib/reporter.py b/src/pip/_internal/resolution/resolvelib/reporter.py index 07ce399ac..376265c2d 100644 --- a/src/pip/_internal/resolution/resolvelib/reporter.py +++ b/src/pip/_internal/resolution/resolvelib/reporter.py @@ -22,21 +22,21 @@ class PipReporter(BaseReporter): 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" ) }