
20 Oct
2012
20 Oct
'12
2:29 p.m.
commit ee92020330ecb1fd43f2c5f2c284d9702987c10e Author: Isis Lovecruft <isis@torproject.org> Date: Tue Oct 16 23:11:27 2012 +0000 * Fixed an error due to a missing import in ooni/nettest.py. --- ooni/nettest.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ooni/nettest.py b/ooni/nettest.py index 85745cc..f1232c7 100644 --- a/ooni/nettest.py +++ b/ooni/nettest.py @@ -1,4 +1,5 @@ import itertools +import os from twisted.python import log, usage from twisted.trial import unittest, itrial @@ -121,4 +122,3 @@ class TestCase(unittest.TestCase): def __repr__(self): return "<%s inputs=%s>" % (self.__class__, self.inputs) -