]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
hush pyflakes
authorBrian Warner <warner@allmydata.com>
Wed, 10 Sep 2008 02:50:17 +0000 (19:50 -0700)
committerBrian Warner <warner@allmydata.com>
Wed, 10 Sep 2008 02:50:17 +0000 (19:50 -0700)
src/allmydata/immutable/checker.py
src/allmydata/test/test_system.py
src/allmydata/test/test_web.py

index b0019865ad7f93bce0890407ead5ac377f5f4185..4c3eacaf3ee3b119d5f8a11926e01fa3200f7ff5 100644 (file)
@@ -11,7 +11,7 @@ from twisted.python import log
 from allmydata import storage
 from allmydata.checker_results import CheckerResults
 from allmydata.immutable import download
-from allmydata.util import hashutil, idlib, base32
+from allmydata.util import hashutil
 
 class SimpleCHKFileChecker:
     """Return a list of (needed, total, found, sharemap), where sharemap maps
index a62e69b12c5b27d6d5854ef268831c75cbc24e90..1a62d0a9c171c368702d4f5bba2728c415165c8e 100644 (file)
@@ -2185,7 +2185,7 @@ class DeepCheck(SystemTestMixin, unittest.TestCase):
             try:
                 data = simplejson.loads(s)
             except ValueError:
-                self.fail("%s (%s): not JSON: '%s'" % (where, url, s))
+                self.fail("%s: not JSON: '%s'" % (url, s))
             return data
         d.addCallback(_decode)
         return d
index 1f14b0f04a74840f176972dde457a24a92e9a591..3c4d0cc6506e2a4043db7ddedee936f171417e6e 100644 (file)
@@ -8,7 +8,7 @@ from twisted.python import failure, log
 from allmydata import interfaces, provisioning, uri, webish
 from allmydata.immutable import upload, download
 from allmydata.web import status, common
-from allmydata.util import fileutil, idlib
+from allmydata.util import fileutil
 from allmydata.test.common import FakeDirectoryNode, FakeCHKFileNode, \
      FakeMutableFileNode, create_chk_filenode
 from allmydata.interfaces import IURI, INewDirectoryURI, \