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:
parent
3e577f6312
commit
868c298968
1 changed files with 3 additions and 1 deletions
|
@ -92,7 +92,9 @@ EXAMPLES = """
|
||||||
src: junos-vsrx-12.1X46-D10.2-domestic.tgz
|
src: junos-vsrx-12.1X46-D10.2-domestic.tgz
|
||||||
reboot: no
|
reboot: no
|
||||||
"""
|
"""
|
||||||
from ansible.module_utils.junos import NetworkModule
|
import ansible.module_utils.junos
|
||||||
|
|
||||||
|
from ansible.module_utils.newtork import NetworkModule
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from jnpr.junos.utils.sw import SW
|
from jnpr.junos.utils.sw import SW
|
||||||
|
|
Loading…
Reference in a new issue