summaryrefslogtreecommitdiffstats
path: root/base/common/python
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2016-10-06 01:00:42 +0200
committerMatthew Harmsen <mharmsen@redhat.com>2016-10-10 16:38:07 -0600
commit37ef16742ab6a8ba0c849c684c06f60e43608036 (patch)
tree5fbe3825c6b1415bbce50009599b301a60484967 /base/common/python
parentcc509ac3e54cf361f4e1d250c67a2994f0c5694e (diff)
downloadpki-37ef16742ab6a8ba0c849c684c06f60e43608036.tar.gz
pki-37ef16742ab6a8ba0c849c684c06f60e43608036.tar.xz
pki-37ef16742ab6a8ba0c849c684c06f60e43608036.zip
Fixed NSSDatabase.create_request().
The NSSDatabase.create_request() has been modified to remove a superfluous argument when invoking certutil.
Diffstat (limited to 'base/common/python')
-rw-r--r--base/common/python/pki/nssdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/common/python/pki/nssdb.py b/base/common/python/pki/nssdb.py
index 736efcac3..c044ba1fb 100644
--- a/base/common/python/pki/nssdb.py
+++ b/base/common/python/pki/nssdb.py
@@ -237,7 +237,7 @@ class NSSDatabase(object):
if basic_constraints_ext:
- cmd.extend(['-2', hash_alg])
+ cmd.extend(['-2'])
# Is this a CA certificate [y/N]?
if basic_constraints_ext['ca']: