diff options
author | Matt Clay <matt@mystile.com> | 2017-09-12 18:49:24 -0700 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2017-09-13 01:53:08 -0700 |
commit | 442af3744ebd60c7ffcaae22b61fb762ccc7c425 (patch) | |
tree | 6d0445f3ba2e14b3d5daa2facb4096f130dc2b23 /bin | |
parent | 77b2aca5a2657e16ab6a236b43a8122164e3b574 (diff) | |
download | ansible-442af3744ebd60c7ffcaae22b61fb762ccc7c425.zip |
Miscellaneous pylint fixes.
The following rules are no longer disabled:
- bad-format-string
- duplicate-key
- lost-exception
- trailing-newlines
- unexpected-keyword-arg
- useless-suppression
- using-constant-test
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ansible | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ansible b/bin/ansible index ffb79803f7..6a40d9718f 100755 --- a/bin/ansible +++ b/bin/ansible @@ -46,7 +46,7 @@ from ansible.module_utils._text import to_text ######################################## # OUTPUT OF LAST RESORT class LastResort(object): - def display(self, msg): + def display(self, msg, log_only=None): print(msg, file=sys.stderr) def error(self, msg, wrap_text=None): |