[tor-commits] [depictor/master] Correcting a spelling error

tom at torproject.org tom at torproject.org
Thu Jan 5 19:41:42 UTC 2017


commit dbac7dff3d2b38b14b73ff1542a3befc90abb7e0
Author: Tom Ritter <tom at ritter.vg>
Date:   Wed Jan 4 15:26:56 2017 -0600

    Correcting a spelling error
---
 website.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/website.py b/website.py
index a596450..cd0bf14 100755
--- a/website.py
+++ b/website.py
@@ -24,7 +24,7 @@ class WebsiteWriter:
 	fallback_dirs = None
 	known_authorities = []
 	bandwidth_authorities = []
-	consensus_expirey = datetime.timedelta(hours=3)
+	consensus_expiry = datetime.timedelta(hours=3)
 	directory_key_warning_time = datetime.timedelta(days=14)
 	config = {}
 	known_params = []
@@ -60,8 +60,8 @@ class WebsiteWriter:
 		self.bandwidth_authorities = get_bwauths().keys()
 	def set_votes(self, v):
 		self.votes = v
-	def set_consensus_expirey(self, timedelta):
-		self.consensus_expirey = timedelta
+	def set_consensus_expiry(self, timedelta):
+		self.consensus_expiry = timedelta
 	def set_directory_key_warning_time(self, timedelta):
 		self.directory_key_warning_time = timedelta
 	def set_config(self, config):
@@ -136,7 +136,7 @@ class WebsiteWriter:
 		+ "<br>\n" \
 		+ "<p>Consensus was published ")
 
-		if self.consensus.valid_after + self.consensus_expirey < datetime.datetime.now():
+		if self.consensus.valid_after + self.consensus_expiry < datetime.datetime.now():
 			self.site.write('<span class="oiv">'
 			+ self.consensus.valid_after.isoformat().replace("T", " ")
 			+ '</span>')
@@ -533,7 +533,7 @@ class WebsiteWriter:
 		+ "  </colgroup>\n"
 		+ "  <tr>\n"
 		+ "    <th>Name</th>"
-		+ "    <th>Expirey</th>"
+		+ "    <th>Expiry</th>"
 		+ "    <th>Identity Key Len.</th>"
 		+ "    <th>Signing Key Len.</th>"
 		+ "  </tr>\n")





More information about the tor-commits mailing list