aboutsummaryrefslogtreecommitdiff
path: root/http2irc.py
diff options
context:
space:
mode:
authorGravatar steering72532026-06-12 18:03:39 -0600
committerGravatar steering72532026-06-12 19:12:46 -0600
commitbc2eed44d49116a8eabd71401f6eeff5e8b0ea33 (patch)
treefb8075c67ff40c11001ff168034874e6efd940ac /http2irc.py
parentrequirements (diff)
allow user to see what went wrong when a cert is "invalid"
Diffstat (limited to 'http2irc.py')
-rw-r--r--http2irc.py3
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):