Update list_merge.py

This commit is contained in:
Mirei 2022-10-05 09:26:30 +03:30 committed by GitHub
parent ddce00b3dd
commit b2d901f0df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -161,7 +161,7 @@ class sub_merge():
content_raw = sub_convert.yaml_decode(content_yaml)
content_raw = list(
filter(lambda x: x != '', '\n'.join(content_raw).split("\n")))
filter(lambda x: x != '', content_raw.split("\n")))
content_raw = "\n".join(content_raw)
content_base64 = sub_convert.base64_encode(content_raw)