diff options
| author | Sebastian Hahn <sebastian@torproject.org> | 2018-02-06 05:50:33 +0100 |
|---|---|---|
| committer | Tom Ritter <tom@ritter.vg> | 2018-02-15 10:20:40 -0600 |
| commit | 56b9329eb12ca734d4c4c5339cc33613f327e150 (patch) | |
| tree | bc31001394646f05a253e53691ea4c21400b6a11 | |
| parent | 026bfdb53f59bdfcddcd60bfe852a8e2567dc709 (diff) | |
Don't omit unused known flags from summary
In the consensus it is possible that zero relays get assigned a known
flag. This would cause depictor to create an empty table row which would
a) hide this information b) look somewhat ugly.
| -rwxr-xr-x | website.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1248,7 +1248,7 @@ class WebsiteWriter: self.site.write(" <td>" + str(flagsAgree[dirauth_nickname][kf]) + " " + kf + "</td>\n") else: - self.site.write(" <td></td>\n") + self.site.write(" <td>0 " + kf + "</td>\n") if dirauth_nickname in flagsMissing and kf in flagsMissing[dirauth_nickname]: self.site.write(" <td><span class=\"oic\">" |
