Skip to content

Commit

Permalink
Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
CBonnell committed Oct 15, 2024
1 parent 2e2d2a4 commit 5d1146f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion example_generator/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,9 @@ def print_cert(name, description, pyasn1_cert: rfc5280.Certificate):
cert_file.write(encoded)
cert_file.flush()

output = subprocess.check_output(['dumpasn1', f'-c{config_file.name}', cert_file.name]).decode()
output = subprocess.check_output(
['dumpasn1', f'-c{config_file.name}', '-i', '-m70', cert_file.name]
).decode()

print('~~~')
print(output)
Expand Down

0 comments on commit 5d1146f

Please sign in to comment.