fix date reading and a variable name

This commit is contained in:
bleizi 2023-07-13 20:06:57 +02:00
parent c69c5197c9
commit 11bcc07bf4
No known key found for this signature in database
GPG Key ID: D46D7E3364433208
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class Command(BaseCommand):
if options["type"] == "members":
today_date = date.today()
selected_date = date(today_date.year - years, today.month, today.day)
selected_date = date(today_date.year - options["years"], today_date.month, today_date.day)
for membership in Membership.objects.filter(
club__name="BDE",
date_start__lte=today_date,