From 1d208a7249c83795429ce037e5c6075cf763695d Mon Sep 17 00:00:00 2001 From: Matt Riley Date: Thu, 12 Dec 2024 12:50:21 -0500 Subject: [PATCH] fixed comment --- corehq/apps/cleanup/management/commands/hard_delete_forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/corehq/apps/cleanup/management/commands/hard_delete_forms.py b/corehq/apps/cleanup/management/commands/hard_delete_forms.py index e9a33cd6655d..9adf19be1511 100644 --- a/corehq/apps/cleanup/management/commands/hard_delete_forms.py +++ b/corehq/apps/cleanup/management/commands/hard_delete_forms.py @@ -16,7 +16,7 @@ def add_arguments(self, parser): parser.add_argument('--resume_id', help='form ID to start at, within the CSV file') def handle(self, domain, filename, resume_id=None, **options): - # expects the filename to have a CSV with a header containing "Deletion Status" and "Form ID" fields + # expects the filename to have a CSV with a header containing a "Form ID" field with open(filename, mode='r', encoding='utf-8-sig') as csvfile: reader = csv.reader(csvfile, delimiter=',') self._process_rows(reader, domain, resume_id)