From a3807eee1029bdcf68cb898fa3c80741137d2fe6 Mon Sep 17 00:00:00 2001 From: Peter Sprygada Date: Mon, 19 Sep 2016 23:13:53 -0400 Subject: [PATCH] fix import in junos_command module (#4927) This fixes the import statements in the junos_command module to be consistent with all junos_* modules --- network/junos/junos_command.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/network/junos/junos_command.py b/network/junos/junos_command.py index cdbb34ce47c..3286b0614e7 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']),