summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Sprygada <privateip@users.noreply.github.com>2016-09-19 23:13:53 -0400
committerGitHub <noreply@github.com>2016-09-19 23:13:53 -0400
commita3807eee1029bdcf68cb898fa3c80741137d2fe6 (patch)
tree9ae6a33faefb76ab853cbf5cf7eb71ad22c2754d
parent16f298138c405373e94c119b60859ad6d102499f (diff)
downloadansible-modules-core-a3807eee1029bdcf68cb898fa3c80741137d2fe6.tar.gz
fix import in junos_command module (#4927)
This fixes the import statements in the junos_command module to be consistent with all junos_* modules
-rw-r--r--network/junos/junos_command.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/network/junos/junos_command.py b/network/junos/junos_command.py
index cdbb34ce..3286b061 100644
--- a/network/junos/junos_command.py
+++ b/network/junos/junos_command.py
@@ -154,10 +154,12 @@ failed_conditionals:
"""
import re
+import ansible.module_utils.junos
+
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 AddCommandError, FailedConditionsError
-from ansible.module_utils.junos import NetworkModule, NetworkError
VALID_KEYS = {
'cli': frozenset(['command', 'output', 'prompt', 'response']),