Update src/registrar/management/commands/create_federal_portfolio.py

This commit is contained in:
zandercymatics 2025-01-13 10:12:43 -07:00 committed by GitHub
parent 5308217d22
commit f6e94da968
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -162,7 +162,7 @@ class Command(BaseCommand):
f"{len(domain_requests_to_update)} domain requests will be updated. "
f"These records will be changed: {[str(req) for req in updated_requests]}"
),
prompt_title="Do wish to commit this update to the database?",
prompt_title="Do you wish to commit this update to the database?",
):
DomainRequest.objects.bulk_update(updated_requests, ["federal_agency"])
TerminalHelper.colorful_logger(logger.info, TerminalColors.OKBLUE, "Action completed successfully.")