summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins
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:50:18 +0200
commit7c50d1798369f571b38666e3fb9a66b0c922eff7 (patch)
tree8c1ac3ba1e9cc9304f5d42106e1e2656663e5eec /ipalib/plugins
parente77bc923c6f7839a38e2af43efd87b92a669c86e (diff)
downloadfreeipa-7c50d1798369f571b38666e3fb9a66b0c922eff7.tar.gz
freeipa-7c50d1798369f571b38666e3fb9a66b0c922eff7.tar.xz
freeipa-7c50d1798369f571b38666e3fb9a66b0c922eff7.zip
Fix pylint false positive in hbactest module
https://fedorahosted.org/freeipa/ticket/1763
Diffstat (limited to 'ipalib/plugins')
-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