aboutsummaryrefslogtreecommitdiff
path: root/rpki/gui/app/check_expired.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2014-05-29 22:31:15 +0000
committerRob Austein <sra@hactrn.net>2014-05-29 22:31:15 +0000
commit35c1ca65ac2b5cbd943248d59b3e02c6220b232f (patch)
treebf2daf07febf7cb352b8fcd530e62a1e5df89626 /rpki/gui/app/check_expired.py
parent07a045d1259f30878abba416b86373c05c929965 (diff)
PyLint
svn path=/trunk/; revision=5845
Diffstat (limited to 'rpki/gui/app/check_expired.py')
-rw-r--r--rpki/gui/app/check_expired.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpki/gui/app/check_expired.py b/rpki/gui/app/check_expired.py
index e869f31b..eda21c0c 100644
--- a/rpki/gui/app/check_expired.py
+++ b/rpki/gui/app/check_expired.py
@@ -111,7 +111,7 @@ def check_child_certs(conf, errs):
pdus = z.call_rpkid(req)
for pdu in pdus:
if isinstance(pdu, report_error_elt):
- logger.error("rpkid reported an error: %s" % pdu.error_code)
+ logger.error("rpkid reported an error: %s", pdu.error_code)
elif isinstance(pdu, list_published_objects_elt):
if pdu.uri.endswith('.cer'):
cert = X509()