mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix lint false positives.
This commit is contained in:
committed by
Martin Kosek
parent
fb329bc8b0
commit
1ac3ed2c27
@@ -329,7 +329,7 @@ def read_realm_name(domain_name, unattended):
|
||||
if unattended:
|
||||
return domain_name.upper()
|
||||
realm_name = user_input("Please provide a realm name", domain_name.upper())
|
||||
upper_dom = realm_name.upper()
|
||||
upper_dom = realm_name.upper() #pylint: disable=E1103
|
||||
if upper_dom != realm_name:
|
||||
print "An upper-case realm name is required."
|
||||
if not user_input("Do you want to use " + upper_dom + " as realm name?", True):
|
||||
|
||||
Reference in New Issue
Block a user