diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-10-01 15:50:31 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-10-01 15:50:31 -0400 |
commit | 618ae49063f9b9398a3606d31d6c011ea861114f (patch) | |
tree | b071a5b8a72a18d946182b8e35753d143840ffcf /lib | |
parent | 0351b06584cec37254dec1f6c8281f22b7798c22 (diff) | |
download | chutney-618ae49063f9b9398a3606d31d6c011ea861114f.tar chutney-618ae49063f9b9398a3606d31d6c011ea861114f.tar.gz |
Fix a typo in the stop code
Diffstat (limited to 'lib')
-rw-r--r-- | lib/chutney/TorNet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chutney/TorNet.py b/lib/chutney/TorNet.py index 4f31e8c..c377a03 100644 --- a/lib/chutney/TorNet.py +++ b/lib/chutney/TorNet.py @@ -624,7 +624,7 @@ class Network(object): sys.stdout.write(".") sys.stdout.flush() for c in controllers: - n.check(listNonRunning=False) + c.check(listNonRunning=False) def verify(self): sys.stdout.write("Verifying data transmission: ") |