mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
improvements
This commit is contained in:
+1
-4
@@ -337,7 +337,6 @@ def init(dev=False):
|
||||
|
||||
# Actually create the virtualenv.
|
||||
c = delegator.run('virtualenv {} --prompt=({})'.format(project.virtualenv_location(), project.name), block=False)
|
||||
# c.block()
|
||||
click.echo(crayons.blue(c.out))
|
||||
|
||||
# Say where the virtualenv is.
|
||||
@@ -345,6 +344,7 @@ def init(dev=False):
|
||||
|
||||
# Write out the lockfile if it doesn't exist.
|
||||
if project.lockfile_exists():
|
||||
|
||||
# Open the lockfile.
|
||||
with codecs.open(project.lockfile_location(), 'r') as f:
|
||||
lockfile = json.load(f)
|
||||
@@ -363,9 +363,6 @@ def init(dev=False):
|
||||
|
||||
click.echo(crayons.yellow('Installing dependencies from Pipfile.freeze...'))
|
||||
|
||||
|
||||
|
||||
|
||||
else:
|
||||
|
||||
# Load the pipfile.
|
||||
|
||||
Reference in New Issue
Block a user