|
@@ -222,8 +222,8 @@ def should_run(odoo):
|
|
|
if not args.force:
|
|
|
last_run = get_last_run(odoo)
|
|
|
|
|
|
- # If the emails where send less than 4 months ago, we quit
|
|
|
- if now.shift(months=-4) < last_run:
|
|
|
+ # If the emails where send less than 3 months ago, we quit
|
|
|
+ if now.shift(months=-3) < last_run:
|
|
|
logging.info("Don't run now")
|
|
|
return False
|
|
|
|