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
df4a9dabd5
commit
4c8e32ee27
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