From 82223f3ed1893ee4bd6b1276cc9bcf82711bfc7a Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Tue, 5 May 2009 14:05:40 -0400 Subject: Fix breakage on python 2.4 with missing object subclass --- ipapython/certdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipapython') diff --git a/ipapython/certdb.py b/ipapython/certdb.py index 15f6c16aa..f88fcd465 100644 --- a/ipapython/certdb.py +++ b/ipapython/certdb.py @@ -24,7 +24,7 @@ import sha import shutil import os -class CertDB(): +class CertDB(object): """ To be used for temporary NSS databases only. If temporary is set then this willcompletely remove the database it is working on when the -- cgit