From d1d61645d5e7b3dfde1a3c462d2a3a54645dd449 Mon Sep 17 00:00:00 2001 From: "Jesus M. Rodriguez" Date: Mon, 1 Oct 2007 23:34:04 -0400 Subject: changed more class defs to use (object) instead of () so it works on python 2.3 and 2.4. --- modules/virt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/virt.py b/modules/virt.py index 7162a36..18ad718 100755 --- a/modules/virt.py +++ b/modules/virt.py @@ -38,7 +38,7 @@ VIRT_STATE_NAME_MAP = { 6 : "crashed" } -class FuncLibvirtConnection(): +class FuncLibvirtConnection(object): def __init__(self): -- cgit