1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

fixes import statements in junos_package module (#4929)

This fixes the import statement to import NetworkModule from network instead
of from junos
This commit is contained in:
Peter Sprygada 2016-09-19 23:18:35 -04:00 committed by Matt Clay
parent 3e577f6312
commit 868c298968

View file

@ -92,7 +92,9 @@ EXAMPLES = """
src: junos-vsrx-12.1X46-D10.2-domestic.tgz
reboot: no
"""
from ansible.module_utils.junos import NetworkModule
import ansible.module_utils.junos
from ansible.module_utils.newtork import NetworkModule
try:
from jnpr.junos.utils.sw import SW