summaryrefslogtreecommitdiff
path: root/hacking/return_skeleton_generator.py
diff options
context:
space:
mode:
authorWill Thames <will@thames.id.au>2019-06-27 09:27:11 +1000
committerJill R <4121322+jillr@users.noreply.github.com>2019-06-26 16:27:11 -0700
commiteda5dd826f274efce549869cf8ec77dbe2e54936 (patch)
tree4fff6b95b3294c181b704e4ef50fd5cc0ad68905 /hacking/return_skeleton_generator.py
parentf10918475379ec2314b62bbe6d2053f344cc8368 (diff)
downloadansible-eda5dd826f274efce549869cf8ec77dbe2e54936.tar.gz
Add rds_snapshot module (#39994)
* new module uses modern ansible AWS standards * adds additional tests for snapshots * Update return_skeleton_generator for python3 - should set type to `str`, not `string`.
Diffstat (limited to 'hacking/return_skeleton_generator.py')
-rwxr-xr-xhacking/return_skeleton_generator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hacking/return_skeleton_generator.py b/hacking/return_skeleton_generator.py
index 05c791bf24..e464300837 100755
--- a/hacking/return_skeleton_generator.py
+++ b/hacking/return_skeleton_generator.py
@@ -64,7 +64,7 @@ def get_return_data(key, value):
returns_info[key]['sample'] = value
# override python unicode type to set to string for docs
if returns_info[key]['type'] == 'unicode':
- returns_info[key]['type'] = 'string'
+ returns_info[key]['type'] = 'str'
return returns_info