fix issue with trailing white space when logging into asa (#28073)
This commit is contained in:
parent
aef4e3d8fa
commit
21dbde0abe
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue