diff --git a/EULA b/EULA index 246510042..70cdea4aa 100644 --- a/EULA +++ b/EULA @@ -3,5 +3,3 @@ This is a PREVIEW RELEASE of a client application for the Let's Encrypt certific Until publicly-trusted certificates can be issued by Let's Encrypt, this software CANNOT OBTAIN A PUBLICLY-TRUSTED CERTIFICATE FOR YOUR WEB SERVER. You should only use this program if you are a developer interested in experimenting with the ACME protocol or in helping to improve this software. If you want to configure your web site with HTTPS in the meantime, please obtain a certificate from a different authority. For updates on the status of Let's Encrypt, please visit the Let's Encrypt home page at https://www.lets-encrypt.org/. - -Do you accept? diff --git a/letsencrypt/client/client.py b/letsencrypt/client/client.py index 95e4d9e87..49cd8af85 100755 --- a/letsencrypt/client/client.py +++ b/letsencrypt/client/client.py @@ -60,7 +60,7 @@ class Client(object): # Display preview warning if not eula: with open('EULA') as f: - if not display.generic_yesno(f.read()): + if not display.generic_yesno(f.read(), "Agree", "Disagree"): sys.exit(0) # Display screen to select domains to validate diff --git a/letsencrypt/client/display.py b/letsencrypt/client/display.py index 7099f4473..6b47f159a 100644 --- a/letsencrypt/client/display.py +++ b/letsencrypt/client/display.py @@ -98,7 +98,7 @@ class NcursesDisplay(Display): return self.d.inputbox(message) def generic_yesno(self, message, yes = "Yes", no = "No"): - a = self.d.yesno(message, HEIGHT, WIDTH) + a = self.d.yesno(message, HEIGHT, WIDTH, yes_label = yes, no_label = no) return a == self.d.DIALOG_OK