Skip to content
Snippets Groups Projects
Commit 161fd027 authored by Thomas Woerner's avatar Thomas Woerner
Browse files

library/ipaapi.py: Fixed create_db version check

create_db is requiring an additional argument for IPA version 4.4.4 still.
parent e908ee4b
No related branches found
No related tags found
No related merge requests found
...@@ -172,7 +172,7 @@ def main(): ...@@ -172,7 +172,7 @@ def main():
# Add CA certs to a temporary NSS database # Add CA certs to a temporary NSS database
argspec = inspect.getargspec(tmp_db.create_db) argspec = inspect.getargspec(tmp_db.create_db)
try: try:
if NUM_VERSION > 40400: if NUM_VERSION > 40404:
tmp_db.create_db() tmp_db.create_db()
for i, cert in enumerate(ca_certs): for i, cert in enumerate(ca_certs):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment