commit e33f55d57b100d9f2e6f697e849811b28cd3bcfb Author: Sathyanarayanan Gunasekaran gsathya.ceg@gmail.com Date: Wed Oct 17 17:54:35 2012 +0530
Fix missing paranthesis --- test/unit/tutorial.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/test/unit/tutorial.py b/test/unit/tutorial.py index 72ea28c..c2fcb25 100644 --- a/test/unit/tutorial.py +++ b/test/unit/tutorial.py @@ -63,7 +63,7 @@ class TestTutorial(unittest.TestCase): # prints the top fifteen relays
count = 1 - for bw_value in sorted(bw_to_relay.keys(), reverse = True: + for bw_value in sorted(bw_to_relay.keys(), reverse = True): for nickname in bw_to_relay[bw_value]: expected_line = "%i. speedyexit (104590 bytes/s)" % count printed_line = "%i. %s (%i bytes/s)" % (count, nickname, bw_value)
tor-commits@lists.torproject.org