Initial check of 'T0 task date has changed' still included the time, hence check always failed. Now [:10] has been added to exclude a time during the check

dev
Hoffelhas 2021-09-20 13:26:47 +02:00
parent 7857a397fc
commit 3a25e05aa3
1 changed files with 1 additions and 4 deletions

View File

@ -453,7 +453,7 @@ def run_recurring_lists_logic(args, api, item, child_items, child_items_all, reg
if item['due']['is_recurring']:
try:
# Check if the T0 task date has changed
if item['due']['date'] != item['date_old']:
if item['due']['date'][:10] != item['date_old']:
# Mark children for action based on mode
if args.regeneration is not None:
@ -490,9 +490,6 @@ def run_recurring_lists_logic(args, api, item, child_items, child_items_all, reg
t = datetime.today()
current_hour = t.hour
if item['content'] == 'b':
print('stop')
# Check if current time is before our end-of-day
if (args.end - current_hour) > 0: