diff options
| -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): |
