Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Make install editable option an option #2299

Closed
wants to merge 13 commits into from
Prev Previous commit
Next Next commit
Consist to use double quote
  • Loading branch information
mlouielu committed Jul 4, 2018
commit 5d759a1b2edaafd958be0ee421e662fc95ef6400
4 changes: 2 additions & 2 deletions pipenv/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1843,8 +1843,8 @@ def do_install(
# Assign editable (-e) to following package_name.
if editable:
editable = list(editable)
package_name = ' '.join(['-e', editable.pop(0)])
more_packages = ['-e %s' % (p) for p in editable]
package_name = " ".join(["-e", editable.pop(0)])
more_packages = ["-e %s" % (p) for p in editable]
if isinstance(more_packages, tuple):
more_packages = list(more_packages)

Expand Down