Constructs like MyClass():
Without explicit inheritance are not allowed on py 2.4. Signed-off-by: Lucas Meneghel Rodrigues <[email protected]> --- client/virt/qemu_io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/virt/qemu_io.py b/client/virt/qemu_io.py index 8f56f4d..7c0b10a 100644 --- a/client/virt/qemu_io.py +++ b/client/virt/qemu_io.py @@ -12,7 +12,7 @@ class QemuIOParamError(Exception): pass -class QemuIO(): +class QemuIO(object): """ A class for execute qemu-io command """ -- 1.7.10 _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
