fix decription extraction on export

This commit is contained in:
Lorenzo Tanganelli 2023-11-03 18:26:15 +01:00 committed by Jeff Bradberry
parent 694d7e98e7
commit 2359004cc1

View File

@ -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