1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-21 17:56:19 +02:00
github.com_openSUSE_osc/osc/oscsslexcp.py
Ludwig Nussel c3f6f03e3c better ssl certificate verification
+ now allows to store&compare peer certificate
- needs more python hacks
2009-11-13 10:46:23 +00:00

8 lines
153 B
Python

#!/usr/bin/python
class NoSecureSSLError(Exception):
def __init__(self, msg):
self.msg = msg
def __str__(self):
return self.msg