diff --git a/backend/comprehensive_import.py b/backend/comprehensive_import.py index e5ad348..516f085 100644 --- a/backend/comprehensive_import.py +++ b/backend/comprehensive_import.py @@ -92,8 +92,11 @@ def import_shows_and_setlists(): tours_added = 0 songs_added = 0 - # Process past shows with setlists - for api_show in past_shows: + # Process ALL shows (past and future) + all_shows_to_process = past_shows + future_shows + print(f"Processing {len(all_shows_to_process)} shows...") + + for api_show in all_shows_to_process: show_date_str = api_show.get("showdate") show_date = datetime.strptime(show_date_str, "%Y-%m-%d") api_show_id = api_show.get("show_id")