Améliorations
This commit is contained in:
parent
ce03a28b4b
commit
c3631e2cd5
1 changed files with 1 additions and 3 deletions
|
@ -14,7 +14,7 @@ class Command(BaseCommand):
|
|||
|
||||
def handle(self, *args, **options):
|
||||
now = timezone.now()
|
||||
delay = timedelta(4)
|
||||
delay = timedelta(days=4)
|
||||
shows = Spectacle.objects \
|
||||
.filter(date__range=(now, now+delay)) \
|
||||
.filter(tirage__active=True) \
|
||||
|
@ -22,8 +22,6 @@ class Command(BaseCommand):
|
|||
.all()
|
||||
for show in shows:
|
||||
show.send_rappel()
|
||||
show.rappel_sent = now
|
||||
show.save()
|
||||
self.stdout.write(
|
||||
'Mails de rappels pour %s envoyés avec succès.' % show)
|
||||
if not shows:
|
||||
|
|
Loading…
Reference in a new issue