Skip to content

Commit

Permalink
Merge pull request mozilla#170 from tomato42/tweak-phrasing
Browse files Browse the repository at this point in the history
de-engrishify error message
  • Loading branch information
jvehent authored Dec 12, 2018
2 parents dced873 + 3186212 commit edfec2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def is_intermediate(results):
failures[lvl].append("use a certificate signed with %s" % " or ".join(inter["certificate_signatures"]))
isinter = False
if not has_pfs:
failures[lvl].append("consider using DHE of at least 2048bits and ECC of 256bits and greater")
failures[lvl].append("consider using DHE of at least 2048bits and ECC 256bit and greater")
if not has_ocsp:
failures[lvl].append("consider enabling OCSP Stapling")
if results['serverside'] != 'True':
Expand Down Expand Up @@ -272,7 +272,7 @@ def is_modern(results):
failures[lvl].append("use a certificate signed with %s" % " or ".join(modern["certificate_signatures"]))
ismodern = False
if not has_pfs:
failures[lvl].append("use DHE of at least 2048bits and ECC of at 256bits and greater")
failures[lvl].append("use DHE of at least 2048bits and ECC 256bit and greater")
ismodern = False
if not has_ocsp:
failures[lvl].append("consider enabling OCSP Stapling")
Expand Down

0 comments on commit edfec2c

Please sign in to comment.