diff options
author | Lorenzo Tanganelli <lorenzo.tanganelli@hotmail.it> | 2023-11-03 18:26:15 +0100 |
---|---|---|
committer | Jeff Bradberry <jeff.bradberry@gmail.com> | 2024-02-07 21:55:19 +0100 |
commit | 2359004cc1fdc8be01050f50e7be388ede2f6662 (patch) | |
tree | 3f0104786aa93c4871fe72c4ae9eb298d142e1b5 /awxkit | |
parent | leave $encrypted$ on export (diff) | |
download | awx-2359004cc1fdc8be01050f50e7be388ede2f6662.tar.xz awx-2359004cc1fdc8be01050f50e7be388ede2f6662.zip |
fix decription extraction on export
Diffstat (limited to 'awxkit')
-rw-r--r-- | awxkit/awxkit/api/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/awxkit/awxkit/api/utils.py b/awxkit/awxkit/api/utils.py index 119d68aa41..8433579bb3 100644 --- a/awxkit/awxkit/api/utils.py +++ b/awxkit/awxkit/api/utils.py @@ -15,7 +15,7 @@ def freeze(key): def parse_description(desc): options = {} - for line in desc[desc.index('POST') :].splitlines(): + for line in desc.splitlines(): match = descRE.match(line) if not match: continue |