summaryrefslogtreecommitdiffstats
path: root/ipapython/secrets/store.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipapython/secrets/store.py')
-rw-r--r--ipapython/secrets/store.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/ipapython/secrets/store.py b/ipapython/secrets/store.py
index 10fdcb634..30a87d4a5 100644
--- a/ipapython/secrets/store.py
+++ b/ipapython/secrets/store.py
@@ -217,7 +217,7 @@ NAME_DB_MAP = {
}
-class iSecStore(CSStore):
+class IPASecStore(CSStore):
def __init__(self, config=None):
self.config = config
@@ -255,3 +255,7 @@ class iSecStore(CSStore):
def span(self, key):
raise NotImplementedError
+
+
+# backwards compatibility with FreeIPA 4.3 and 4.4.
+iSecStore = IPASecStore