diff options
| author | 2026-06-12 18:03:39 -0600 | |
|---|---|---|
| committer | 2026-06-12 19:12:46 -0600 | |
| commit | bc2eed44d49116a8eabd71401f6eeff5e8b0ea33 (patch) | |
| tree | fb8075c67ff40c11001ff168034874e6efd940ac /http2irc.py | |
| parent | requirements (diff) | |
allow user to see what went wrong when a cert is "invalid"
Diffstat (limited to 'http2irc.py')
| -rw-r--r-- | http2irc.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/http2irc.py b/http2irc.py index da47dc2..7a38122 100644 --- a/http2irc.py +++ b/http2irc.py @@ -51,7 +51,8 @@ def is_valid_pem(path, withCert): assert contents[endKeyPos + 26:] == b'' return True except: # Yes, really - return False + raise + #return False async def wait_cancel_pending(aws, paws = None, **kwargs): |
