Skip to content

Commit c8254c2

Browse files
committed
update tool
1 parent 45c17a3 commit c8254c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tools/CreateAppList.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
app_name = os.path.basename(os.path.dirname(compose_file))
1919
icon = data.get('x-casaos', {}).get('icon', '')
2020
title = data.get('x-casaos', {}).get('title', {}).get('en_us', '')
21-
description1 = data.get('x-casaos', {}).get('description', {}).get('en_us', '')
22-
description2 = data.get('x-casaos', {}).get('description', {}).get('zh_cn', '')
21+
description1 = data.get('x-casaos', {}).get('description', {}).get('en_us', '').replace("\n", "")
22+
description2 = data.get('x-casaos', {}).get('description', {}).get('zh_cn', '').replace("\n", "")
2323
if (description1==description2):
2424
description = description1
2525
elif (description1==""):

0 commit comments

Comments
 (0)