From 2974df9d5e6fd0b9cb193fcbf98ef02dff46c719 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Fri, 10 Aug 2018 01:34:23 +0200 Subject: [PATCH] Fix typo --- lib/ansible/plugins/connection/paramiko_ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/connection/paramiko_ssh.py b/lib/ansible/plugins/connection/paramiko_ssh.py index 6ff21434c73..2019155d72f 100644 --- a/lib/ansible/plugins/connection/paramiko_ssh.py +++ b/lib/ansible/plugins/connection/paramiko_ssh.py @@ -386,7 +386,7 @@ class Connection(ConnectionBase): raise AnsibleConnectionFailure(msg) # sudo usually requires a PTY (cf. requiretty option), therefore - # we give it one by default (pty=True in ansble.cfg), and we try + # we give it one by default (pty=True in ansible.cfg), and we try # to initialise from the calling environment when sudoable is enabled if self.get_option('pty') and sudoable: chan.get_pty(term=os.getenv('TERM', 'vt100'), width=int(os.getenv('COLUMNS', 0)), height=int(os.getenv('LINES', 0)))