diff options
Diffstat (limited to '')
-rw-r--r-- | app/views/consts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/consts.py b/app/views/consts.py index c76cf17..0cc7199 100644 --- a/app/views/consts.py +++ b/app/views/consts.py @@ -74,7 +74,7 @@ class ConstForm(F.Form): @templated def list (): """List all constant expenses.""" - d = today() + d = today().replace(day = 1) expenses = ConstExpense.of(current_user).order_by(ConstExpense.description).all() |