summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2017-02-12 11:21:42 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2017-02-12 11:21:42 +0100
commita331460344813eb2a522eb7c34a95db9353451c2 (patch)
tree7a2e775d6908a0df32ac6cb0434e6177c3eb9c94
parent08f0356358348cc3242a7bb45e3f008d66cf70f8 (diff)
downloadkosten-a331460344813eb2a522eb7c34a95db9353451c2.tar.gz
kosten-a331460344813eb2a522eb7c34a95db9353451c2.tar.bz2
kosten-a331460344813eb2a522eb7c34a95db9353451c2.zip
Fix
-rw-r--r--app/views/consts.py2
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()