[tor-commits] [stem/master] Fix missing paranthesis

atagar at torproject.org atagar at torproject.org
Wed Oct 17 15:22:03 UTC 2012


commit e33f55d57b100d9f2e6f697e849811b28cd3bcfb
Author: Sathyanarayanan Gunasekaran <gsathya.ceg at 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)



More information about the tor-commits mailing list