offerings formatted to fit on screen

This commit is contained in:
James Kasten 2012-11-07 22:30:37 -05:00
parent 85c0d141f7
commit dc1f0bef16
2 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -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