We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a236b3c commit 0ed82f1Copy full SHA for 0ed82f1
cli/website.py
@@ -131,5 +131,9 @@ def create_autorenew_cert(
131
],
132
):
133
"""Create and apply an auto-renewing Let's Encrypt certificate for the given domain"""
134
- Website().auto_ssl(domain_name=domain_name)
+ response_json = Website().auto_ssl(domain_name=domain_name)
135
+ from pprint import pprint
136
+ print("########################", flush=True)
137
+ pprint(response_json)
138
139
typer.echo(snakesay(f"Applied auto-renewing SSL certificate for {domain_name}!"))
0 commit comments