fix import in junos_command module (#4927)
This fixes the import statements in the junos_command module to be consistent with all junos_* modules
This commit is contained in:
parent
82cf70e0f3
commit
b9cb9d6345
1 changed files with 3 additions and 1 deletions
|
@ -154,10 +154,12 @@ failed_conditionals:
|
||||||
"""
|
"""
|
||||||
import re
|
import re
|
||||||
|
|
||||||
|
import ansible.module_utils.junos
|
||||||
|
|
||||||
from ansible.module_utils.basic import get_exception
|
from ansible.module_utils.basic import get_exception
|
||||||
|
from ansible.module_utils.network import NetworkModule, NetworkError
|
||||||
from ansible.module_utils.netcli import CommandRunner
|
from ansible.module_utils.netcli import CommandRunner
|
||||||
from ansible.module_utils.netcli import AddCommandError, FailedConditionsError
|
from ansible.module_utils.netcli import AddCommandError, FailedConditionsError
|
||||||
from ansible.module_utils.junos import NetworkModule, NetworkError
|
|
||||||
|
|
||||||
VALID_KEYS = {
|
VALID_KEYS = {
|
||||||
'cli': frozenset(['command', 'output', 'prompt', 'response']),
|
'cli': frozenset(['command', 'output', 'prompt', 'response']),
|
||||||
|
|
Loading…
Reference in a new issue