summaryrefslogtreecommitdiffstats
path: root/awxkit
diff options
context:
space:
mode:
authorLorenzo Tanganelli <lorenzo.tanganelli@hotmail.it>2023-11-03 18:26:15 +0100
committerJeff Bradberry <jeff.bradberry@gmail.com>2024-02-07 21:55:19 +0100
commit2359004cc1fdc8be01050f50e7be388ede2f6662 (patch)
tree3f0104786aa93c4871fe72c4ae9eb298d142e1b5 /awxkit
parentleave $encrypted$ on export (diff)
downloadawx-2359004cc1fdc8be01050f50e7be388ede2f6662.tar.xz
awx-2359004cc1fdc8be01050f50e7be388ede2f6662.zip
fix decription extraction on export
Diffstat (limited to 'awxkit')
-rw-r--r--awxkit/awxkit/api/utils.py2
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