summaryrefslogtreecommitdiffstats
path: root/ipalib/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/cli.py')
-rw-r--r--ipalib/cli.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py
index 60afb7d0..003df495 100644
--- a/ipalib/cli.py
+++ b/ipalib/cli.py
@@ -587,9 +587,9 @@ class textui(backend.Backend):
except EOFError:
return -2
- if resp.lower() == "q":
+ if resp.lower() == "q": #pylint: disable=E1103
return -2
- if resp.lower() == "a":
+ if resp.lower() == "a": #pylint: disable=E1103
return -1
try:
selection = int(resp) - 1