--fancy for windows

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-24 20:13:01 -04:00
parent 8e914bb2e2
commit fe3adefd0d
3 changed files with 7 additions and 1 deletions
+2
View File
@@ -1,3 +1,5 @@
7.8.8:
- Make --fancy default for windows users.
7.8.7:
- Make resolver use client python for setup.py egg_info (very fancy).
- Fix a nasty windows bug.
+1 -1
View File
@@ -3,4 +3,4 @@
# //___/ / / / //___/ / // // / / || / /
# // / / // ((____ // / / ||/ /
__version__ = '7.8.7'
__version__ = '7.8.8'
+4
View File
@@ -1974,6 +1974,10 @@ def shell(three=None, python=False, fancy=False, shell_args=None, anyway=False):
# Load .env file.
load_dot_env()
# Use fancy mode for Windows.
if os.name == 'nt':
fancy = True
do_shell(three=three, python=python, fancy=fancy, shell_args=shell_args)