Pylint: fix false positive warning for domain

Reviewed-By: Petr Vobornik <pvoborni@redhat.com>
This commit is contained in:
Martin Basti
2015-05-19 18:37:43 +02:00
committed by Petr Vobornik
parent ae9c3e2dce
commit ab69a0b1a7

View File

@@ -952,7 +952,7 @@ def main():
else: else:
domain_name = options.domain_name domain_name = options.domain_name
domain_name = domain_name.lower() domain_name = domain_name.lower() # pylint: disable=E1103
if not options.realm_name: if not options.realm_name:
realm_name = read_realm_name(domain_name, options.unattended) realm_name = read_realm_name(domain_name, options.unattended)