summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2017-09-12 18:49:24 -0700
committerMatt Clay <matt@mystile.com>2017-09-13 01:53:08 -0700
commit442af3744ebd60c7ffcaae22b61fb762ccc7c425 (patch)
tree6d0445f3ba2e14b3d5daa2facb4096f130dc2b23 /bin
parent77b2aca5a2657e16ab6a236b43a8122164e3b574 (diff)
downloadansible-442af3744ebd60c7ffcaae22b61fb762ccc7c425.tar.gz
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-xbin/ansible2
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):