Merge pull request #8464 from pfmoore/nr_lintfix

Fix a merge issue that didn't get caught by Brown Truck
This commit is contained in:
Pradyun Gedam 2020-06-18 19:09:41 +05:30 committed by GitHub
commit 1c6f438ce5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ class _InstallRequirementBackedCandidate(Candidate):
return "{} {} (from {})".format(
self.name,
self.version,
self.link.file_path if self.link.is_file else self.link
self._link.file_path if self._link.is_file else self._link
)
def _prepare_abstract_distribution(self):