[trivial] fix is_ssl_enabled to not always return True

This commit is contained in:
Edward Hope-Morley 2015-03-11 11:57:29 +00:00
parent a831a81594
commit a4c5b8d4d4

View File

@ -869,7 +869,7 @@ def is_ssl_enabled():
return True return True
log("SSL/HTTPS is NOT enabled", level=DEBUG) log("SSL/HTTPS is NOT enabled", level=DEBUG)
return True return False
def get_ssl_cert_master_votes(): def get_ssl_cert_master_votes():