From 3e577f63120a22e7e9a0c06828ee5c46bb3aa1b3 Mon Sep 17 00:00:00 2001 From: Peter Sprygada Date: Mon, 19 Sep 2016 23:18:26 -0400 Subject: [PATCH] fix up junos_facts import statements (#4928) This fixes the junos_facts import statements and removes importing NetworkModule from the junos shared module. --- lib/ansible/modules/network/junos/junos_facts.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/network/junos/junos_facts.py b/lib/ansible/modules/network/junos/junos_facts.py index 8ff5eb4572b..f22b3bb0000 100644 --- a/lib/ansible/modules/network/junos/junos_facts.py +++ b/lib/ansible/modules/network/junos/junos_facts.py @@ -85,7 +85,9 @@ ansible_facts: returned: always type: dict """ -from ansible.module_utils.junos import NetworkModule +import ansible.module_utils.junos + +from ansible.module_utils.network import NetworkModule from ansible.module_utils.junos import xml_to_string, xml_to_json def main():