Skip to content

Commit

Permalink
Fix wrong parameter in function call
Browse files Browse the repository at this point in the history
  • Loading branch information
miterion committed Aug 12, 2019
1 parent 25f3a5c commit ab69558
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dfngen/dfnclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def gen_existing(fqdn, pin, applicant, config, path, additional, requestnumber):
conf['password'] = None
print('Generating certificate signing request')
req = openssl.gen_csr_with_existing_cert(
path, conf['fqdn'], conf['subject'], password=password, additional=additional)
path, conf['fqdn'], conf['subject'], password=conf['password'], additional=additional)
conf['pin'] = pin
conf['profile'] = 'Web Server'
soap.submit_request(req, onlyreqnumber=requestnumber, **conf)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='dfnclient',
version='0.1.1',
version='0.1.2',
license='MIT',
description='Certificate client based on the soap API of the dfn',
install_requires =['click==7.0', 'termcolor==1.1.0', 'suds-py3==1.3.3.0', 'cryptography==2.7'],
Expand Down

0 comments on commit ab69558

Please sign in to comment.