mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00: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:
committed by
Matt Clay
parent
3e577f6312
commit
868c298968
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user