Skip to content

Commit

Permalink
Remove debug print
Browse files Browse the repository at this point in the history
Signed-off-by: Walter BONETTI <[email protected]>
  • Loading branch information
IniterWorker committed Jul 5, 2024
1 parent 1b2d5e4 commit 02b583c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/paho/mqtt/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ def _subject_alt_name_string(cert: X509) -> list:
san_entries = ext.__str__().split(', ')
for entry in san_entries:
key, value = entry.split(':', 1)
print(f"key {key}: value {value}")
san.append((key.strip(), value.strip()))
return san

Expand Down

0 comments on commit 02b583c

Please sign in to comment.