diff options
author | Ganesh Nalawade <ganesh634@gmail.com> | 2017-12-03 21:42:30 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-03 21:42:30 +0530 |
commit | 11c9ad23d54a8be756cd7585ce863d4fdc3cda0a (patch) | |
tree | 17485fd0d9eb7534f06197926ffeb636e3c794c9 /lib/ansible/plugins/action/sros.py | |
parent | 18aca480750e835d88c71723c7f85d6bc92b8bd5 (diff) | |
download | ansible-11c9ad23d54a8be756cd7585ce863d4fdc3cda0a.tar.gz |
Refactor common network shared and platform utils code into package (#33452)
* Refactor common network shared and platform specific code into package (part-1)
As per proposal #76 refactor common network shared and platform specific
code into sub-package.
https://github.com/ansible/proposals/issues/76
* ansible.module_utils.network.common - command shared functions
* ansible.module_utils.network.{{ platform }} - where platform is platform specific shared functions
* Fix review comments
* Fix review comments
Diffstat (limited to 'lib/ansible/plugins/action/sros.py')
-rw-r--r-- | lib/ansible/plugins/action/sros.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/plugins/action/sros.py b/lib/ansible/plugins/action/sros.py index 015f5ee42a..8a1e745d98 100644 --- a/lib/ansible/plugins/action/sros.py +++ b/lib/ansible/plugins/action/sros.py @@ -24,8 +24,8 @@ import copy from ansible import constants as C from ansible.plugins.action.normal import ActionModule as _ActionModule -from ansible.module_utils.sros import sros_provider_spec -from ansible.module_utils.network_common import load_provider +from ansible.module_utils.network.sros.sros import sros_provider_spec +from ansible.module_utils.network.common.utils import load_provider try: from __main__ import display |