Skip to content

Commit

Permalink
Fixes #456 extreme issue with send_command
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed May 3, 2017
1 parent c8ac7a7 commit 6aa565b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion netmiko/extreme/extreme_ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ def send_command(self, *args, **kwargs):
"""Extreme needs special handler here due to the prompt changes."""

# Change send_command behavior to use self.base_prompt
kwargs.setdefault({'auto_find_prompt': False})
kwargs.setdefault('auto_find_prompt', False)

# refresh self.base_prompt
self.set_base_prompt()
return super(ExtremeSSH, self).send_command(*args, **kwargs)
Expand Down

0 comments on commit 6aa565b

Please sign in to comment.