Skip to content

Commit

Permalink
fix nxos_linkagg issue (ansible#41550)
Browse files Browse the repository at this point in the history
* fix nxos_linkagg issue

* fix shippable

(cherry picked from commit 119e6d6)
  • Loading branch information
saichint authored and trishnaguha committed Jun 16, 2018
1 parent 4202d1d commit 001c383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/modules/network/nxos/nxos_linkagg.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def map_config_to_obj(module):

try:
channels = output['TABLE_channel']['ROW_channel']
except KeyError:
except (TypeError, KeyError):
return objs

if channels:
Expand Down

0 comments on commit 001c383

Please sign in to comment.