From 6752ceb0891a9ddcbdab0a44edcac8c91abdf0f2 Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Wed, 4 Dec 2019 23:06:51 +0500 Subject: [PATCH] bug fix: fetch child-domains ssl status --- websiteFunctions/website.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websiteFunctions/website.py b/websiteFunctions/website.py index 98a205d92..3031c6988 100755 --- a/websiteFunctions/website.py +++ b/websiteFunctions/website.py @@ -871,7 +871,7 @@ class WebsiteManager: if Data['authority'] == 'Denial': Data['authority'] = '%s has SELF-SIGNED SSL.' % (self.childDomain) else: - Data['authority'] = '%s has SSL from %s.' % (self.domain, Data['authority']) + Data['authority'] = '%s has SSL from %s.' % (self.childDomain, Data['authority']) except BaseException, msg: Data['viewSSL'] = 0