From 3d50f58a8d1587deacdc541592b08a7026f567d8 Mon Sep 17 00:00:00 2001 From: Karl0ss Date: Mon, 27 Nov 2023 14:03:29 +0000 Subject: [PATCH] Update main.py --- main.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index ee1ea20..96fbb7f 100644 --- a/main.py +++ b/main.py @@ -78,8 +78,12 @@ exists = does_csv_exist() if exists: no_change = compare_dfs(df) if not no_change: + print("Fixtures updated, ical updated") store_df_as_csv(df) create_ical_file(df, cal) + else: + print("Fixtured not updated, no update to ical") else: store_df_as_csv(df) - create_ical_file(df, cal) \ No newline at end of file + create_ical_file(df, cal) + print("New ical file created")