hush pyflakes

This commit is contained in:
Brian Warner 2008-09-09 19:50:17 -07:00
parent 1d2d6a35a6
commit 80d8f3e862
3 changed files with 3 additions and 3 deletions

View 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

View 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

View 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, \