Skip to content

Commit

Permalink
Improve dependency links log message (#4936)
Browse files Browse the repository at this point in the history
  • Loading branch information
pamolloy authored and pradyunsg committed May 30, 2018
1 parent b120d24 commit 8d3f5e7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Empty file.
2 changes: 1 addition & 1 deletion src/pip/_internal/index.py
Expand Up @@ -683,7 +683,7 @@ def _link_package_versions(self, link, search):
version = egg_info_matches(egg_info, search.supplied, link) version = egg_info_matches(egg_info, search.supplied, link)
if version is None: if version is None:
self._log_skipped_link( self._log_skipped_link(
link, 'wrong project name (not %s)' % search.supplied) link, 'Missing project version for %s' % search.supplied)
return return


match = self._py_version_re.search(version) match = self._py_version_re.search(version)
Expand Down

0 comments on commit 8d3f5e7

Please sign in to comment.