From a40d4d4d643cb3a4846f21857e611a76f5037ce8 Mon Sep 17 00:00:00 2001 From: Martin Kosek Date: Tue, 13 Sep 2011 13:37:32 +0200 Subject: Fix pylint false positive in hbactest module https://fedorahosted.org/freeipa/ticket/1763 --- ipalib/plugins/hbactest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipalib/plugins/hbactest.py b/ipalib/plugins/hbactest.py index 43151e34..75442451 100644 --- a/ipalib/plugins/hbactest.py +++ b/ipalib/plugins/hbactest.py @@ -153,7 +153,7 @@ def convert_to_ipa_rule(rule): if attr_name in rule: element[4].groups = rule[attr_name] if 'externalhost' in rule: - ipa_rule.srchosts.names.extend(rule['externalhost']) + ipa_rule.srchosts.names.extend(rule['externalhost']) #pylint: disable=E1101 return ipa_rule -- cgit