EnigmaBridge / certbot-external-auth

Certbot external DNS, HTTP, TLSSNI domain validation plugin with JSON output and scriptable hooks, with Dehydrated compatibility
Other
109 stars 15 forks source link

certbot-external-auth not working with certbot 0.10 #2

Closed leeyc0 closed 7 years ago

leeyc0 commented 7 years ago

It appears that certbot.display.util.FileDisplay is changed in this revision which introduced an addition argument in it's constructor.

As as result line 165 of certbot_external_auth/plugin.py

displayer = display_util.FileDisplay(sys.stderr)

fails. I have to change it to

displayer = display_util.FileDisplay(sys.stderr, False)

to make it work in certbot 0.10

ph4r05 commented 7 years ago

thanks for letting us know! We will fix it ASAP