From 5256a62d341bf351d58b4f29e166b36aa73b6aa3 Mon Sep 17 00:00:00 2001 From: Mike Khiretskiy Date: Wed, 5 Nov 2014 16:42:22 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=B4=D0=BB=D1=8F=20=D1=84=D1=80?= =?UTF-8?q?=D0=B0=D0=BD=D1=86=D1=83=D0=B7=D1=81=D0=BA=D0=BE=D0=B3=D0=BE=20?= =?UTF-8?q?=D0=BF=D0=B5=D1=80=D0=B5=D0=B2=D0=BE=D0=B4=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pym/console/application/cert_verify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/console/application/cert_verify.py b/pym/console/application/cert_verify.py index 3300ef8..24c0eee 100644 --- a/pym/console/application/cert_verify.py +++ b/pym/console/application/cert_verify.py @@ -77,8 +77,8 @@ def verify(server_cert, crl_path, flag): for rvk in revoked_objects: if serverSerial == int(rvk.get_serial(), 16): print _("This certificate has been revoked!") - print _("Serial")+ ': %s\n' %rvk.get_serial() + _("Revoke date") + \ - ': %s' %rvk.get_rev_date() + print _("Serial")+ _(': %s\n') %rvk.get_serial() + _("Revoke date") + \ + _(': %s') %rvk.get_rev_date() raise VerifyError('CRL Exception') return 0