commit 789691395a9c59211c62c1c5cd8bbdb50abd69c0 Author: Karsten Loesing karsten.loesing@gmx.net Date: Wed Mar 26 12:42:42 2014 +0100
Fix typo (#9889). --- task-9889/tshirt.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/task-9889/tshirt.py b/task-9889/tshirt.py index afee3da..d9f5962 100755 --- a/task-9889/tshirt.py +++ b/task-9889/tshirt.py @@ -28,30 +28,30 @@ def print_debug_info(fingerprint, first_seen_check, exit_port_check, uptime_perc else: print("Average bandwidth in past 2 months : " + str(avg_bandwidth) + "KBytes/s")
- print("\nElligibility") + print("\nEligibility") print("------------")
if not first_seen_check: - print("Not elligible for T-shirt") + print("Not eligible for T-shirt") print("Reason : Relay first appeared in past 2 months") elif uptime_percent < 95: - print("Not elligible for T-shirt") + print("Not eligible for T-shirt") print("Reason : Insufficient relay uptime percentage") else: if exit_port_check is False: if avg_bandwidth >= 500: - print("Elligible for T-shirt") + print("Eligible for T-shirt") print("Reason : Average bandwidth greater than 500KBytes/s and " "relay uptime greater than 95%") else: - print("Not elligible for T-shirt") + print("Not eligible for T-shirt") print("Reason : Average bandwidth less than 500KBytes/s and port 80 blocked") else: if avg_bandwidth < 100: - print("Not elligible for T-shirt") + print("Not eligible for T-shirt") print("Reason : Average bandwidth less than 100KBytes/s") else: - print("Elligible for T-shirt") + print("Eligible for T-shirt") print("Reason : Average bandwidth greater than 100KBytes/s," "relay uptime greater than 95% and port 80 unblocked") print("")
tor-commits@lists.torproject.org