This makes JSONWriter actually inherit from Backend, and everything works with no warnings or errors.
Signed-off-by: Dylan Baker <[email protected]> --- framework/results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/results.py b/framework/results.py index e4fba8b..c3aac9f 100644 --- a/framework/results.py +++ b/framework/results.py @@ -131,7 +131,7 @@ class Backend(object): """ -class JSONWriter(object): +class JSONWriter(Backend): ''' Writes to a JSON file stream -- 2.1.0 _______________________________________________ Piglit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/piglit
