Update tja.py

This commit is contained in:
Anthony Samms
2025-11-22 00:02:13 -05:00
parent e506f70baf
commit ac9badbbc4

View File

@@ -378,7 +378,7 @@ class TJAParser:
elif item.startswith('WAVE'):
data = item.split(':')[1]
if not Path(self.file_path.parent / data.strip()).exists():
logger.error(data, str(self.file_path))
logger.error(f'{data}, {self.file_path}')
logger.warning(f"Invalid WAVE value: {data} in TJA file {self.file_path}")
self.metadata.wave = Path()
else: