Skip to content

Commit

Permalink
Merge PR #692 into 14.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Nov 30, 2022
2 parents 93519ad + 7865875 commit 1853850
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bi_sql_editor/models/bi_sql_view.py
Expand Up @@ -3,7 +3,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

import logging
from datetime import datetime
from datetime import datetime, timedelta

from psycopg2 import ProgrammingError

Expand Down Expand Up @@ -430,7 +430,7 @@ def _prepare_cron(self):
"numbercall": -1,
"interval_number": 1,
"interval_type": "days",
"nextcall": datetime(now.year, now.month, now.day + 1),
"nextcall": now + timedelta(days=1),
"active": True,
}

Expand Down

0 comments on commit 1853850

Please sign in to comment.