From: Brian Warner <warner@allmydata.com>
Date: Wed, 23 Apr 2008 00:14:26 +0000 (-0700)
Subject: hush pyflakes warning about code that got moved in the recent StallMixin refactoring
X-Git-Tag: allmydata-tahoe-1.1.0~191
X-Git-Url: https://git.rkrishnan.org/components/com_hotproperty/frontends/status?a=commitdiff_plain;h=acdd98432d1e0b351e7d0d8dd4f4270d7e65767f;p=tahoe-lafs%2Ftahoe-lafs.git

hush pyflakes warning about code that got moved in the recent StallMixin refactoring
---

diff --git a/src/allmydata/test/test_client.py b/src/allmydata/test/test_client.py
index 9bb889db..a8e169a0 100644
--- a/src/allmydata/test/test_client.py
+++ b/src/allmydata/test/test_client.py
@@ -2,7 +2,6 @@
 import os
 from twisted.trial import unittest
 from twisted.application import service
-from twisted.internet import reactor, defer
 from twisted.python import log
 
 import allmydata
diff --git a/src/allmydata/test/test_dirnode.py b/src/allmydata/test/test_dirnode.py
index 8522ea5a..918df62c 100644
--- a/src/allmydata/test/test_dirnode.py
+++ b/src/allmydata/test/test_dirnode.py
@@ -8,7 +8,6 @@ from allmydata.interfaces import IURI, IClient, IMutableFileNode, \
 from allmydata.util import hashutil, testutil
 from allmydata.test.common import make_chk_file_uri, make_mutable_file_uri, \
      FakeDirectoryNode, create_chk_filenode
-from twisted.internet import defer, reactor
 
 # to test dirnode.py, we want to construct a tree of real DirectoryNodes that
 # contain pointers to fake files. We start with a fake MutableFileNode that
diff --git a/src/allmydata/test/test_system.py b/src/allmydata/test/test_system.py
index 8ea19858..3596deaa 100644
--- a/src/allmydata/test/test_system.py
+++ b/src/allmydata/test/test_system.py
@@ -3,7 +3,7 @@ from base64 import b32encode
 import os, sys, time, re, simplejson
 from cStringIO import StringIO
 from twisted.trial import unittest
-from twisted.internet import defer, reactor
+from twisted.internet import defer
 from twisted.internet import threads # CLI tests use deferToThread
 from twisted.internet.error import ConnectionDone, ConnectionLost
 from twisted.application import service