Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
2013f668
Unverified
Commit
2013f668
authored
May 31, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix terminal color support in get-poetry.py
parent
ae1773d6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletions
+15
-1
get-poetry.py
+15
-1
No files found.
get-poetry.py
View file @
2013f668
...
@@ -19,6 +19,7 @@ directory, it will look for them in the base system.
...
@@ -19,6 +19,7 @@ directory, it will look for them in the base system.
import
argparse
import
argparse
import
json
import
json
import
os
import
os
import
platform
import
re
import
re
import
shutil
import
shutil
import
subprocess
import
subprocess
...
@@ -88,7 +89,20 @@ STYLES = {
...
@@ -88,7 +89,20 @@ STYLES = {
def
is_decorated
():
def
is_decorated
():
return
sys
.
stdout
.
isatty
()
if
platform
.
system
()
.
lower
()
==
"windows"
:
return
(
os
.
getenv
(
"ANSICON"
)
is
not
None
or
"ON"
==
os
.
getenv
(
"ConEmuANSI"
)
or
"xterm"
==
os
.
getenv
(
"Term"
)
)
if
not
hasattr
(
sys
.
stdout
,
"fileno"
):
return
False
try
:
return
os
.
isatty
(
sys
.
stdout
.
fileno
())
except
UnsupportedOperation
:
return
False
def
colorize
(
style
,
text
):
def
colorize
(
style
,
text
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment