Fix double line-break in mmd files

Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
This commit is contained in:
TheJackiMonster 2022-12-05 18:28:10 +01:00
parent 5c61575c50
commit 172a5b6b1c
No known key found for this signature in database
GPG key ID: D850A5F772E880F9

View file

@ -48,6 +48,9 @@ class MmdFile(AbstractFile):
if not ignoreBody:
body = file.read()
if (len(body) > 0) and (body[0] == "\n"):
body = body[1:]
return metadata, body
def load(self):