Update app.py
Browse files
app.py
CHANGED
@@ -29,7 +29,7 @@ def run_script_periodically():
|
|
29 |
|
30 |
current_day = datetime.now().weekday() # Monday is 0, Sunday is 6
|
31 |
|
32 |
-
if current_day ==
|
33 |
|
34 |
log_message("Starting Updation")
|
35 |
|
|
|
29 |
|
30 |
current_day = datetime.now().weekday() # Monday is 0, Sunday is 6
|
31 |
|
32 |
+
if current_day == 0: # Check if today is Monday
|
33 |
|
34 |
log_message("Starting Updation")
|
35 |
|