1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 09:16:16 +02:00
github.com_openSUSE_osc/osc/oschttps.py
2009-10-02 11:25:59 +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