mirror of
https://github.com/ansible/awx.git
synced 2026-03-19 09:57:33 -02:30
fix decription extraction on export
This commit is contained in:
committed by
Jeff Bradberry
parent
694d7e98e7
commit
2359004cc1
@@ -15,7 +15,7 @@ def freeze(key):
|
|||||||
|
|
||||||
def parse_description(desc):
|
def parse_description(desc):
|
||||||
options = {}
|
options = {}
|
||||||
for line in desc[desc.index('POST') :].splitlines():
|
for line in desc.splitlines():
|
||||||
match = descRE.match(line)
|
match = descRE.match(line)
|
||||||
if not match:
|
if not match:
|
||||||
continue
|
continue
|
||||||
|
|||||||
Reference in New Issue
Block a user