diff options
| author | Tom Ritter <tom@ritter.vg> | 2018-02-15 16:58:35 -0600 |
|---|---|---|
| committer | Tom Ritter <tom@ritter.vg> | 2018-04-06 20:52:29 -0500 |
| commit | 5aeea0e0eaa3a4a7674c8d6baf6e85c078f6b512 (patch) | |
| tree | 55af815754a06e1d7cb492ac92dc10853576eb82 | |
| parent | cd08f47ce1a10e478297705e8781797fa6d7d29c (diff) | |
Remove a partially misleading signature algorithm
Closes #25184
| -rwxr-xr-x | website.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -262,7 +262,7 @@ class WebsiteWriter: + " </colgroup>\n") # XXX Should also write if the displayed consensus is out of date - signingFPs = {sig.identity:sig.method for sig in self.consensus.signatures} + signingFPs = [sig.identity for sig in self.consensus.signatures] for dirauth_nickname in self.known_authorities: self.site.write(" <tr>\n" + " <td>" + dirauth_nickname + "</td>\n") @@ -286,7 +286,7 @@ class WebsiteWriter: # but we need this structure for the authority's fingerprint authority = [d for d in self.consensus.directory_authorities if d.nickname.lower() == dirauth_nickname][0] if authority.fingerprint in signingFPs: - self.site.write(" <td>" + signingFPs[authority.fingerprint] + "</td>\n") + self.site.write(" <td></td>\n") elif authority.nickname.lower() in self.consensuses: self.site.write(" <td class=\"oiv\">Missing Signature! " + "Valid-after time of auth's displayed consensus: " |
