Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Shepherd <zjs@users.noreply.github.com>2017-06-08 01:16:52 +0300
committerBrad Warren <bmw@users.noreply.github.com>2017-06-08 01:16:52 +0300
commita06dec366023d14277fa4309d0e75c51c36f49ce (patch)
tree7f034c11ffc94b480560336862c4c346aca25248 /certbot-dns-route53/setup.py
parent239184882e1694bee62b12e43e3d4e0a1f08b9da (diff)
route53: avoid listing the plugin twice in the UI (#4794)
Without this change, the Route53 plugin is listed twice when running Certbot interactively (once under the old name, once under the new name). This change ensures only the new name is shown, while maintaining hidden backwards compatibility with the old name.
Diffstat (limited to 'certbot-dns-route53/setup.py')
-rw-r--r--certbot-dns-route53/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/certbot-dns-route53/setup.py b/certbot-dns-route53/setup.py
index 8d2632697..a138cdea5 100644
--- a/certbot-dns-route53/setup.py
+++ b/certbot-dns-route53/setup.py
@@ -53,7 +53,7 @@ setup(
entry_points={
'certbot.plugins': [
'dns-route53 = certbot_dns_route53.dns_route53:Authenticator',
- 'certbot-route53:auth = certbot_dns_route53.dns_route53:Authenticator'
+ 'certbot-route53:auth = certbot_dns_route53.authenticator:Authenticator'
],
},
test_suite='certbot_dns_route53',