Fixes #30769 - nxos_vtp_version errors out on N1 images. (#30770) (#31285)

* Fixes #30769

* add the same fix for 2 more vtp modules

(cherry picked from commit a12a05c219)
pull/31288/head
Trishna Guha 7 years ago committed by GitHub
parent 04ced64e35
commit 6999b1168f

@ -149,11 +149,14 @@ def get_vtp_config(module):
def get_vtp_password(module):
command = 'show vtp password'
body = execute_show_command(command, module)[0]
try:
password = body['passwd']
if password:
return str(password)
else:
return ""
except TypeError:
return ""
def main():

@ -180,11 +180,14 @@ def get_vtp_config(module):
def get_vtp_password(module):
command = 'show vtp password'
body = execute_show_command(command, module)[0]
try:
password = body['passwd']
if password:
return str(password)
else:
return ""
except TypeError:
return ""
def main():

@ -147,11 +147,14 @@ def get_vtp_config(module):
def get_vtp_password(module):
command = 'show vtp password'
body = execute_show_command(command, module)[0]
try:
password = body['passwd']
if password:
return str(password)
else:
return ""
except TypeError:
return ""
def main():

Loading…
Cancel
Save