From 43b2a1d6bb4c4abbc86d41aecfe6d7449cdc4a85 Mon Sep 17 00:00:00 2001 From: Alexander Hosking Date: Sat, 30 Apr 2022 01:33:09 -0400 Subject: [PATCH] Improve current cycle time --- period/cycles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/period/cycles.py b/period/cycles.py index ec4be5e..596ce39 100644 --- a/period/cycles.py +++ b/period/cycles.py @@ -17,7 +17,7 @@ def index(): db = get_db() current_cycle = db.execute('SELECT * from cycle ORDER BY id DESC LIMIT 1').fetchone() start_time = pendulum.parse(current_cycle['start_time']) - cycle_length = (pendulum.now() - start_time ).days + cycle_length = ((pendulum.now() - start_time ).days)+1 db.execute( 'UPDATE cycle SET cycle_length = ?'