From 1ac3ed2c271accc0776a3cc34fbe607acf62da17 Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Thu, 7 Apr 2011 16:53:52 +0200 Subject: Fix lint false positives. --- ipalib/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipalib/cli.py') 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 -- cgit