Skip to content

Commit

Permalink
Fix CI errors
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkrivich committed Jun 20, 2018
1 parent 597fabd commit 7516ead
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pipenv/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1893,7 +1893,8 @@ def do_install(
raise click.BadArgumentUsage('Please provide path to editable package')
package_name = ' '.join([package_name, more_packages.pop(0)])
# capture indexes and extra indexes
line = ' '.join([package_name] + more_packages).strip()
line = [package_name] + more_packages
line = ' '.join(str(s) for s in line).strip()
index_indicators = ['-i', '--index', '--extra-index-url']
index, extra_indexes = None, None
if any(line.endswith(s) for s in index_indicators):
Expand Down

0 comments on commit 7516ead

Please sign in to comment.