mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-24 03:30:50 +02:00
Update extend_expiration_dates.py
This commit is contained in:
parent
9cc018beeb
commit
e350d1e9e3
1 changed files with 0 additions and 16 deletions
|
@ -90,7 +90,6 @@ class Command(BaseCommand):
|
|||
self.update_skipped.append(domain.name)
|
||||
logger.info(f"{TerminalColors.YELLOW}" f"Skipping update for {domain}" f"{TerminalColors.ENDC}")
|
||||
else:
|
||||
logger.info("What is the amount? {}")
|
||||
domain.renew_domain(extension_amount)
|
||||
self.update_success.append(domain.name)
|
||||
logger.info(
|
||||
|
@ -208,18 +207,3 @@ class Command(BaseCommand):
|
|||
{TerminalColors.ENDC}
|
||||
"""
|
||||
)
|
||||
|
||||
# We use this manual approach rather than relative delta due to our
|
||||
# github localenv not having the package installed.
|
||||
# Credit: https://stackoverflow.com/questions/15741618/add-one-year-in-current-date-python
|
||||
def add_years(self, old_date, years):
|
||||
"""Return a date that's `years` years after the date (or datetime)
|
||||
object `old_date`. Return the same calendar date (month and day) in the
|
||||
destination year, if it exists, otherwise use the following day
|
||||
(thus changing February 29 to March 1).
|
||||
|
||||
"""
|
||||
try:
|
||||
return old_date.replace(year=old_date.year + years)
|
||||
except ValueError:
|
||||
return old_date + (date(old_date.year + years, 1, 1) - date(old_date.year, 1, 1))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue