mirror of
https://github.com/ansible/awx.git
synced 2026-02-25 06:56:00 -03: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):
|
||||
options = {}
|
||||
for line in desc[desc.index('POST') :].splitlines():
|
||||
for line in desc.splitlines():
|
||||
match = descRE.match(line)
|
||||
if not match:
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user