Closed leeyc0 closed 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
thanks for letting us know! We will fix it ASAP
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