commit f17c3d7b7a0d98b6a9f7a2780f75ba45046cf94a Author: Lunar lunar@torproject.org Date: Tue May 13 14:04:43 2014 +0200
response_time: Fix typo --- response-time/response_time.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/response-time/response_time.py b/response-time/response_time.py index 40d8ad9..38981e5 100755 --- a/response-time/response_time.py +++ b/response-time/response_time.py @@ -48,7 +48,7 @@ def account_tickets(con, year, month): response_time = last_update - open_tickets[ticket_id] bucket = int(response_time.total_seconds() / (BUCKET_SIZE * 60 * 60)) response_times[bucket] = 1 + response_times.get(bucket, 0) - print "%d anwsered in %s" % (ticket_id, response_time) + print "%d answered in %s" % (ticket_id, response_time) del open_tickets[ticket_id] else: print "Don't know when %d was opened." % (ticket_id)
tor-commits@lists.torproject.org