We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c261c3 commit 5de2b1aCopy full SHA for 5de2b1a
src/pip/_internal/resolution/resolvelib/factory.py
@@ -708,8 +708,8 @@ def _report_single_requirement_conflict(
708
"using the '-r' flag to install the packages listed in "
709
"requirements.txt"
710
)
711
- req = str(req).partition(';')[0].strip()
712
- return DistributionNotFound(f"No matching distribution found for {req}")
+ req_str = str(req).partition(";")[0].strip()
+ return DistributionNotFound(f"No matching distribution found for {req_str}")
713
714
def _has_any_candidates(self, project_name: str) -> bool:
715
"""
0 commit comments