Skip to content

Commit

Permalink
Fix GitHub Issue #3.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsteves committed Oct 15, 2024
1 parent f8c844e commit e73df48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/sprocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,11 +270,11 @@ def trust_bits_match(bits_cert, bits_pol):


def write_fingerprints(certs, policy_certs):
# duplicate PAN-OS
def canonicalize(x):
x = ''.join(c for c in x if ord(c) < 128)
x = x.replace(' ', '_')
x = x.replace(',', '_')
x = x.replace('/', '_')

return x

Expand Down

0 comments on commit e73df48

Please sign in to comment.