Merge pull request #17264 from privateip/iosxr

disable prompt timestamps upon successful connection to iosxr
pull/4420/head
Peter Sprygada 2016-08-26 15:27:15 -04:00 committed by GitHub
commit e4b0690ef3
1 changed files with 2 additions and 1 deletions

View File

@ -55,7 +55,8 @@ class Cli(CliBase):
def connect(self, params, **kwargs):
super(Cli, self).connect(params, kickstart=False, **kwargs)
self.shell.send('terminal length 0')
self.shell.send(['terminal length 0',
'terminal exec prompt no-timestamp'])
### implementation of netcli.Cli ###