From b801130c54074044464834def4031663f4795df0 Mon Sep 17 00:00:00 2001 From: Prabuddha Chakraborty Date: Wed, 16 Dec 2015 14:33:19 +0530 Subject: [PATCH] Added expired cert warning --- ee/cli/plugins/site.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ee/cli/plugins/site.py b/ee/cli/plugins/site.py index 5a04ef63..771766c4 100644 --- a/ee/cli/plugins/site.py +++ b/ee/cli/plugins/site.py @@ -1219,9 +1219,9 @@ class EESiteUpdateController(CementBaseController): " https://{0}".format(ee_domain)) if (SSL.getExpirationDays(ee_domain)>0): - Log.info(self, "Your certification will expire within " + SSL.getExpirationDays() + " days.") + Log.info(self, "Your cert will expire within " + SSL.getExpirationDays() + " days.") else: - Log.warn(self, "Your certification already EXPIRED ! . PLEASE renew soon . ") + Log.warn(self, "Your cert already EXPIRED ! .PLEASE renew soon . ")