1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-21 09:46:19 +02:00
github.com_openSUSE_osc/osc/oschttps.py

8 lines
153 B
Python
Raw Normal View History

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