summaryrefslogtreecommitdiffstats
path: root/awx_collection/tools
diff options
context:
space:
mode:
authorSeth Foster <fosterbseth@gmail.com>2021-04-29 17:58:41 +0200
committerSeth Foster <fosterbseth@gmail.com>2021-06-08 20:33:23 +0200
commit7a63785255e04808d5cb8ca330d2fee31190cd9f (patch)
tree1bd7c13fb083de0865ba57a900730a969e36f970 /awx_collection/tools
parentregex replace tower_*: to '' (diff)
downloadawx-7a63785255e04808d5cb8ca330d2fee31190cd9f.tar.xz
awx-7a63785255e04808d5cb8ca330d2fee31190cd9f.zip
more rename, mostly in test
Diffstat (limited to 'awx_collection/tools')
-rw-r--r--awx_collection/tools/roles/generate/templates/module.j24
1 files changed, 2 insertions, 2 deletions
diff --git a/awx_collection/tools/roles/generate/templates/module.j2 b/awx_collection/tools/roles/generate/templates/module.j2
index 60e65cf92c..ea7b954053 100644
--- a/awx_collection/tools/roles/generate/templates/module.j2
+++ b/awx_collection/tools/roles/generate/templates/module.j2
@@ -96,7 +96,7 @@ EXAMPLES = '''
{% endif %}
'''
-from ..module_utils.tower_api import TowerAPIModule
+from ..module_utils.controller_api import ControllerAPIModule
def main():
@@ -142,7 +142,7 @@ def main():
)
# Create a module for ourselves
- module = TowerAPIModule(argument_spec=argument_spec)
+ module = ControllerAPIModule(argument_spec=argument_spec)
# Extract our parameters
{% for option in item['json']['actions']['POST'] %}