From 5c767d4266fe028cc0c11b05447e61ae89af9d45 Mon Sep 17 00:00:00 2001 From: Ashwini Mhatre Date: Wed, 7 Jul 2021 20:33:54 +0530 Subject: fix issue in route-maps facts code when route-maps facts are empty. (#182) fix issue in route-maps facts code when route-maps facts are empty. SUMMARY fixes: #181 ISSUE TYPE Bugfix Pull Request COMPONENT NAME ADDITIONAL INFORMATION Reviewed-by: Rohit Thakur --- plugins/module_utils/network/vyos/config/route_maps/route_maps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/module_utils') diff --git a/plugins/module_utils/network/vyos/config/route_maps/route_maps.py b/plugins/module_utils/network/vyos/config/route_maps/route_maps.py index 5e4bbea..467d782 100644 --- a/plugins/module_utils/network/vyos/config/route_maps/route_maps.py +++ b/plugins/module_utils/network/vyos/config/route_maps/route_maps.py @@ -40,7 +40,7 @@ class Route_maps(ResourceModule): def __init__(self, module): super(Route_maps, self).__init__( - empty_fact_val={}, + empty_fact_val=[], facts_module=Facts(module), module=module, resource="route_maps", -- cgit v1.2.3