1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 17:28:08 +00:00

Includes SSL cacert file path in the warnings.

This commit is contained in:
Jeremy 2015-03-06 11:25:25 -07:00
parent 053fd9cc0c
commit f188bc43e1

View File

@ -40,7 +40,7 @@ class CrashReport:
if os.path.isfile(cacert):
DSN += "?ca_certs={}".format(cacert)
else:
log.warning("The SSL certificate bundle file could not be found".format(cacert))
log.warning("The SSL certificate bundle file '{}' could not be found".format(cacert))
_instance = None
def __init__(self):