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

added --color flag to force color even if stdout is a tty #439

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions toot/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,11 @@ def editor(value):
"action": 'store_true',
"default": False,
}),
(["--color"], {
"help": "always use ANSI colors in output",
"action": 'store_true',
"default": False,
}),
(["--quiet"], {
"help": "don't write to stdout on success",
"action": 'store_true',
Expand Down
5 changes: 5 additions & 0 deletions toot/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@ def use_ansi_color():
if sys.platform == 'win32' and 'ANSICON' not in os.environ:
return False

# With the --color flag, force color, even if stdout is a tty
# and even if --no-color is also specified (!)
if "--color" in sys.argv:
return True

# Don't show color if stdout is not a tty, e.g. if output is piped on
if not sys.stdout.isatty():
return False
Expand Down