Skip to content

Commit

Permalink
fix spacing in certgen.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ihamburglar committed Apr 30, 2015
1 parent b2ff5be commit 90a3117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/certgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def createCertRequest(pkey, digest="sha256", **name):
req = crypto.X509Req()
subj = req.get_subject()

for key,value in name.items():
for key, value in name.items():
setattr(subj, key, value)

req.set_pubkey(pkey)
Expand Down

0 comments on commit 90a3117

Please sign in to comment.