From dc1f0bef163353297948b68993245bf553603fa1 Mon Sep 17 00:00:00 2001 From: James Kasten Date: Wed, 7 Nov 2012 22:30:37 -0500 Subject: [PATCH] offerings formatted to fit on screen --- trustify/client/.ca_offerings | 8 ++++---- trustify/client/client.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/trustify/client/.ca_offerings b/trustify/client/.ca_offerings index 3c83e6f15..f21fafb14 100644 --- a/trustify/client/.ca_offerings +++ b/trustify/client/.ca_offerings @@ -1,4 +1,4 @@ -EFF (DV);The EFF Trustify CA, Domain Validated - FREE -UMich (DV);The Michigan Trustify CA, Domain Validated - FREE -TrustUS (DV);The TrustUS Trustify CA, Domain Validated - FREE -TrustUS (OV);The TrustUS Trustify CA, Orgainization Validated - 10 USD +EFF (DV);EFF CA, Domain Validated - FREE +UMich (DV);Michigan CA, Domain Validated - FREE +TrustUS (DV);TrustUS CA, Domain Validated - FREE +TrustUS (OV);TrustUS CA, Orgainization Validated - 10 USD diff --git a/trustify/client/client.py b/trustify/client/client.py index 365dcc6bb..bdb726aec 100644 --- a/trustify/client/client.py +++ b/trustify/client/client.py @@ -65,7 +65,7 @@ def choice_of_ca(): result = d.menu("Pick a Certificate Authority. They're all unique and special!", width=70, choices=choices) def get_cas(): - with open(".ca_offerings") as f: + with open("trustify/client/.ca_offerings") as f: choices = [line.split(";", 1) for line in f] return choices