ignore lines without any spaces

This commit is contained in:
Nicolas Mowen 2024-06-16 21:06:22 -06:00
parent 8295a0de73
commit f43240a985

View File

@ -481,7 +481,7 @@ def logs(service: str):
for rawLine in contents.splitlines():
cleanLine = rawLine.strip()
if len(cleanLine) < 10:
if len(cleanLine) < 10 or " " not in cleanLine:
continue
if dateEnd == 0: