fix issue with trailing white space when logging into asa (#28073)

pull/28076/head
Jacob McGill 7 years ago committed by Peter Sprygada
parent aef4e3d8fa
commit 21dbde0abe

@ -40,7 +40,7 @@ class TerminalModule(TerminalBase):
]
def on_open_shell(self):
if self._get_prompt().endswith(b'#'):
if self._get_prompt().strip().endswith(b'#'):
self.disable_pager()
def disable_pager(self):

Loading…
Cancel
Save