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 1a5ba96 commit f1ffcf6
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 @@ -327,7 +327,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 f1ffcf6

Please sign in to comment.