This commit is contained in:
Deserty0
2025-04-27 19:49:49 +10:00
parent e7e55cdb5e
commit 419b4e9e8f
2 changed files with 1 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ def read_ftl(path: str) -> dict:
logger.debug("%s: %s", LogText.READING_DATA_FROM_FILE, path)
with open(path, encoding="utf-8") as file:
for line in file.readlines():
if line.startswith("#") or line.startswith("\n"):
if line.startswith("#") or line.startswith("\n") or line.startswith(" \n"):
continue
if not line.startswith(" "):