mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 10:51:53 +02:00
Avoid all terminal codes in --quiet mode
This commit is contained in:
@@ -102,5 +102,5 @@ class Reporter(object):
|
|||||||
if len(lines) > 1:
|
if len(lines) > 1:
|
||||||
print("\n".join(
|
print("\n".join(
|
||||||
next_wrapper.fill(line) for line in lines[1:]))
|
next_wrapper.fill(line) for line in lines[1:]))
|
||||||
if bold_on:
|
if bold_on and not self.config.quiet:
|
||||||
sys.stdout.write(le_util.ANSI_SGR_RESET)
|
sys.stdout.write(le_util.ANSI_SGR_RESET)
|
||||||
|
|||||||
Reference in New Issue
Block a user