summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ipalib/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py
index 737ae0015..7af63761a 100644
--- a/ipalib/cli.py
+++ b/ipalib/cli.py
@@ -574,7 +574,7 @@ class textui(backend.Backend):
prompt = u'%s Yes/No: ' % label
while True:
- data = self.prompt_helper(prompt, label)
+ data = self.prompt_helper(prompt, label).lower() #pylint: disable=E1103
if data in (u'yes', u'y'):
return True