Fix typo in network_cli to fetch command prompt (#32899)

This commit is contained in:
Ganesh Nalawade 2017-11-15 09:06:28 +05:30 committed by GitHub
parent 6472723ba8
commit 52c87c4691
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -119,7 +119,7 @@ class Connection(ConnectionBase):
try:
cmd = json.loads(to_text(cmd, errors='surrogate_or_strict'))
kwargs = {'command': to_bytes(cmd['command'], errors='surrogate_or_strict')}
for key in ('prompts', 'answer', 'send_only'):
for key in ('prompt', 'answer', 'send_only'):
if key in cmd:
kwargs[key] = to_bytes(cmd[key], errors='surrogate_or_strict')
return self.send(**kwargs)
@ -280,7 +280,7 @@ class Connection(ConnectionBase):
resp = self._strip(self._last_response)
return self._sanitize(resp, command)
def send(self, command, prompts=None, answer=None, send_only=False):
def send(self, command, prompt=None, answer=None, send_only=False):
'''
Sends the command to the device in the opened shell
'''
@ -289,7 +289,7 @@ class Connection(ConnectionBase):
self._ssh_shell.sendall(b'%s\r' % command)
if send_only:
return
response = self.receive(command, prompts, answer)
response = self.receive(command, prompt, answer)
return to_text(response, errors='surrogate_or_strict')
except (socket.timeout, AttributeError):
display.vvvv(traceback.format_exc(), host=self._play_context.remote_addr)