From 94622f5edd136c8904a8f7aa0d78a351e4bb2ea2 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Wed, 14 Oct 2015 22:53:36 -0700 Subject: [PATCH] Date only because hard to do time with no time --- letsencrypt/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 92d845538..24f032ca1 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -303,9 +303,9 @@ def _auth_from_domains(le_client, config, domains, plugins): _report_new_cert(lineage.cert) reporter_util = zope.component.getUtility(interfaces.IReporter) reporter_util.add_message( - "Your certificate will expire at {0}. To obtain a new version of the " + "Your certificate will expire on {0}. To obtain a new version of the " "certificate in the future, simply run this client again.".format( - lineage.notafter().ctime()), + lineage.notafter().date()), reporter_util.MEDIUM_PRIORITY) return lineage