Skip to content

Commit

Permalink
Fix missing paren in installer error string format
Browse files Browse the repository at this point in the history
  • Loading branch information
badjware committed Oct 31, 2021
1 parent 5685a7b commit 3174e22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion certbot_dns_cpanel/dns_cpanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def install_ssl(self, record_domain, cert_path, key_path, chain_path):
if response_data['data'][0]['result'] == 1:
logger.info("Successfully installed the SSL certificate for %s", record_domain)
else:
raise errors.PluginError("Error installing the SSL certificate for %s : %s" % record_domain, response_data['data'][0]['output'])
raise errors.PluginError("Error installing the SSL certificate for %s : %s" % (record_domain, response_data['data'][0]['output']))

def _get_zone_and_name(self, record_domain):
"""Find a suitable zone for a domain
Expand Down

0 comments on commit 3174e22

Please sign in to comment.