File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -405,8 +405,9 @@ def abort(msg=""):
405
405
click .style ("..." , bold = True ),
406
406
)
407
407
)
408
- # TOOD: pass project settings to console.status
409
- with console .status ("Installing python..." ) as st :
408
+ with console .status (
409
+ "Installing python..." , spinner = project .s .PIPENV_SPINNER
410
+ ):
410
411
try :
411
412
c = installer .install (version )
412
413
except InstallerError as e :
@@ -416,7 +417,9 @@ def abort(msg=""):
416
417
click .echo (fix_utf8 ("Something went wrong..." ), err = True )
417
418
click .secho (e .err , fg = "cyan" , err = True )
418
419
else :
419
- st (environments .PIPENV_SPINNER_OK_TEXT .format ("Success!" ))
420
+ console .print (
421
+ environments .PIPENV_SPINNER_OK_TEXT .format ("Success!" )
422
+ )
420
423
# Print the results, in a beautiful blue...
421
424
click .secho (c .stdout , fg = "cyan" , err = True )
422
425
# Clear the pythonfinder caches
You can’t perform that action at this time.
0 commit comments