From 02a663c244189c916d0c27ba473dc5b3d4ea7419 Mon Sep 17 00:00:00 2001 From: meejah Date: Thu, 11 Jun 2020 15:34:47 -0600 Subject: [PATCH] new-style classes only --- src/allmydata/testing/web.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/allmydata/testing/web.py b/src/allmydata/testing/web.py index bc0138326..de515ebc9 100644 --- a/src/allmydata/testing/web.py +++ b/src/allmydata/testing/web.py @@ -28,7 +28,7 @@ from allmydata.util import ( ) -class _FakeTahoeRoot(Resource): +class _FakeTahoeRoot(Resource, object): """ This is a sketch of how an in-memory 'fake' of a Tahoe WebUI. Ultimately, this will live in Tahoe @@ -100,7 +100,7 @@ def capability_generator(kind): yield cap.encode("ascii") -class _FakeTahoeUriHandler(Resource): +class _FakeTahoeUriHandler(Resource, object): """ """