diff options
author | Jan Cholasta <jcholast@redhat.com> | 2011-04-28 18:32:25 +0200 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2011-05-05 11:54:07 +0200 |
commit | 7e0d4531c3b24f473f55c12e4fc9857a9e03e2e8 (patch) | |
tree | c989fc5e47da340699e06c6d8a2333907fd2a489 /ipalib/cli.py | |
parent | 88353edcb198c5d0b0b320e776c5576e4549a966 (diff) | |
download | freeipa-7e0d4531c3b24f473f55c12e4fc9857a9e03e2e8.tar.gz freeipa-7e0d4531c3b24f473f55c12e4fc9857a9e03e2e8.tar.xz freeipa-7e0d4531c3b24f473f55c12e4fc9857a9e03e2e8.zip |
Several improvements of the lint script.
Report missing python packages, inform about false positives, fail
gracefully if pylint isn't installed. Fixed a bug in the ignore
list and added few more files/directories to it.
ticket 1184
Diffstat (limited to 'ipalib/cli.py')
-rw-r--r-- | ipalib/cli.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py index 003df4953..57082cc53 100644 --- a/ipalib/cli.py +++ b/ipalib/cli.py @@ -33,6 +33,7 @@ import termios import struct import base64 try: + #pylint: disable=F0401 import default_encoding_utf8 except ImportError: # This is a chicken-and-egg problem. The api can't be imported unless |