From 1ac3ed2c271accc0776a3cc34fbe607acf62da17 Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Thu, 7 Apr 2011 16:53:52 +0200 Subject: Fix lint false positives. --- ipalib/plugins/cert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/plugins/cert.py') diff --git a/ipalib/plugins/cert.py b/ipalib/plugins/cert.py index 0ddae7bb..b219835d 100644 --- a/ipalib/plugins/cert.py +++ b/ipalib/plugins/cert.py @@ -494,7 +494,7 @@ class cert_show(VirtualCommand): if hostname: # If we have a hostname we want to verify that the subject # of the certificate matches it, otherwise raise an error - if hostname != cert.subject.common_name: + if hostname != cert.subject.common_name: #pylint: disable=E1101 raise acierr return dict(result=result) -- cgit