Fixes Capitalization on CrossBeats Read.py

This commit is contained in:
2025-01-27 19:50:49 +00:00
parent b62e9beb67
commit f3f0569755

View File

@ -38,7 +38,7 @@ class CxbReader(BaseReader):
self.logger.info(f"Read csv from {bin_dir}")
try:
fullPath = bin_dir + "/export.csv"
fullPath = bin_dir + "/Export.csv"
with open(fullPath, encoding="UTF-8") as fp:
reader = csv.DictReader(fp)
for row in reader: