summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2011-09-13 13:37:32 +0200
committerMartin Kosek <mkosek@redhat.com>2011-09-13 13:49:43 +0200
commita40d4d4d643cb3a4846f21857e611a76f5037ce8 (patch)
tree57290fa21eebee59a7ed39bd8dea9823903bd5fb /ipalib
parent261a41b3d4e78f7563a4cc72ebd2b4db42fac3bf (diff)
downloadfreeipa-a40d4d4d643cb3a4846f21857e611a76f5037ce8.tar.gz
freeipa-a40d4d4d643cb3a4846f21857e611a76f5037ce8.tar.xz
freeipa-a40d4d4d643cb3a4846f21857e611a76f5037ce8.zip
Fix pylint false positive in hbactest module
https://fedorahosted.org/freeipa/ticket/1763
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/plugins/hbactest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/hbactest.py b/ipalib/plugins/hbactest.py
index 43151e340..75442451c 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