Using shorthand for disabling paging to avoid the syntax difference between versions. (#31942)
Fixes #31855
This commit is contained in:
parent
529b7a7b78
commit
6693cc3f5a
1 changed files with 1 additions and 1 deletions
|
@ -48,6 +48,6 @@ class TerminalModule(TerminalBase):
|
||||||
|
|
||||||
def on_open_shell(self):
|
def on_open_shell(self):
|
||||||
try:
|
try:
|
||||||
self._exec_cli_command(b'no paging')
|
self._exec_cli_command(b'no pag')
|
||||||
except AnsibleConnectionFailure:
|
except AnsibleConnectionFailure:
|
||||||
raise AnsibleConnectionFailure('unable to set terminal parameters')
|
raise AnsibleConnectionFailure('unable to set terminal parameters')
|
||||||
|
|
Loading…
Reference in a new issue