From 5f2a7500cfd0f42c9b88f4779c6ef9755cc741ef Mon Sep 17 00:00:00 2001 From: crupest Date: Sat, 19 Nov 2022 13:29:17 +0800 Subject: Make it easier to run certbot command. v2.0 --- tool/aio.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tool/aio.py') diff --git a/tool/aio.py b/tool/aio.py index 16358db..6defa99 100755 --- a/tool/aio.py +++ b/tool/aio.py @@ -121,10 +121,12 @@ if args.action == 'domain': elif domain_action == 'certbot': is_test = args.test if args.create: - console.print(certbot_command_gen(domain, "create", test=is_test)) + console.print(certbot_command_gen(domain, "create", + test=is_test), soft_wrap=True, highlight=False) exit(0) elif args.renew: - console.print(certbot_command_gen(domain, "renew", test=is_test)) + console.print(certbot_command_gen(domain, "renew", + test=is_test), soft_wrap=True, highlight=False) exit(0) console.print( "Here is some commands you can use to do certbot related work.") -- cgit v1.2.3