mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Fix patch to what it had before that is working.
This commit is contained in:
@@ -136,5 +136,5 @@ class SearchScope:
|
||||
|
||||
index_urls = self.index_urls
|
||||
if project_name in self.index_lookup:
|
||||
index_urls = list(self.index_lookup[project_name])
|
||||
index_urls = [self.index_lookup[project_name]]
|
||||
return [mkurl_pypi_url(url) for url in index_urls]
|
||||
|
||||
@@ -93,5 +93,5 @@ index a64af738..0674ed07 100644
|
||||
- return [mkurl_pypi_url(url) for url in self.index_urls]
|
||||
+ index_urls = self.index_urls
|
||||
+ if project_name in self.index_lookup:
|
||||
+ index_urls = list(self.index_lookup[project_name])
|
||||
+ index_urls = [self.index_lookup[project_name]]
|
||||
+ return [mkurl_pypi_url(url) for url in index_urls]
|
||||
|
||||
Reference in New Issue
Block a user