From a4a7226fdd6a68e331acb8d94c8548bb8599de8d Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Tue, 19 Dec 2023 09:55:55 -0700 Subject: [PATCH] Change expiration minimum --- src/registrar/management/commands/extend_expiration_dates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/registrar/management/commands/extend_expiration_dates.py b/src/registrar/management/commands/extend_expiration_dates.py index 5e203e488..59b0274ab 100644 --- a/src/registrar/management/commands/extend_expiration_dates.py +++ b/src/registrar/management/commands/extend_expiration_dates.py @@ -29,7 +29,7 @@ def __init__(self): self.update_success = [] self.update_skipped = [] self.update_failed = [] - self.expiration_minimum_cutoff = date(2023, 11, 15) + self.expiration_minimum_cutoff = date(2023, 11, 1) self.expiration_maximum_cutoff = date(2023, 12, 30) def add_arguments(self, parser):