mirror of
https://github.com/ChuckBuilds/LEDMatrix.git
synced 2026-04-11 13:23:00 +00:00
more of the day debug logging and fix datetime duplicate in NCAA FB
This commit is contained in:
@@ -190,17 +190,23 @@ class OfTheDayManager:
|
||||
os.path.join(script_dir, '..', 'of_the_day', data_file),
|
||||
os.path.join('of_the_day', data_file)
|
||||
])
|
||||
|
||||
# Remove duplicates while preserving order
|
||||
seen = set()
|
||||
unique_paths = []
|
||||
for path in possible_paths:
|
||||
abs_path = os.path.abspath(path)
|
||||
if abs_path not in seen:
|
||||
seen.add(abs_path)
|
||||
unique_paths.append(abs_path)
|
||||
|
||||
# Debug: Show all paths before deduplication
|
||||
logger.debug(f"All possible paths before deduplication: {possible_paths}")
|
||||
|
||||
# Remove duplicates while preserving order
|
||||
seen = set()
|
||||
unique_paths = []
|
||||
for path in possible_paths:
|
||||
abs_path = os.path.abspath(path)
|
||||
if abs_path not in seen:
|
||||
seen.add(abs_path)
|
||||
unique_paths.append(abs_path)
|
||||
possible_paths = unique_paths
|
||||
|
||||
# Debug: Show paths after deduplication
|
||||
logger.debug(f"Unique paths after deduplication: {possible_paths}")
|
||||
|
||||
file_path = None
|
||||
for potential_path in possible_paths:
|
||||
abs_path = os.path.abspath(potential_path)
|
||||
|
||||
Reference in New Issue
Block a user