From 2037cd9be11d8a4d9cb2369a0384c0ffeed7c774 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Tue, 26 Nov 2019 08:43:05 -0500 Subject: [PATCH] New-style the new class --- src/allmydata/test/storage_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/test/storage_plugin.py b/src/allmydata/test/storage_plugin.py index 570ea38d2..e35e97f43 100644 --- a/src/allmydata/test/storage_plugin.py +++ b/src/allmydata/test/storage_plugin.py @@ -90,7 +90,7 @@ class DummyStorage(object): return resource -class GetCounter(Resource): +class GetCounter(Resource, object): """ ``GetCounter`` is a resource that returns a count of the number of times it has rendered a response to a GET request.