diff options
author | Rob Crittenden <rcritten@redhat.com> | 2009-05-05 14:05:40 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2009-05-05 14:05:40 -0400 |
commit | 82223f3ed1893ee4bd6b1276cc9bcf82711bfc7a (patch) | |
tree | ae037bb1bb0dcc51098a69f95c2718e74a0a94ee /ipapython | |
parent | c0020955a5a5aec925cc0fd526efcb727acc5d13 (diff) | |
download | freeipa-82223f3ed1893ee4bd6b1276cc9bcf82711bfc7a.tar.gz freeipa-82223f3ed1893ee4bd6b1276cc9bcf82711bfc7a.tar.xz freeipa-82223f3ed1893ee4bd6b1276cc9bcf82711bfc7a.zip |
Fix breakage on python 2.4 with missing object subclass
Diffstat (limited to 'ipapython')
-rw-r--r-- | ipapython/certdb.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |