Skip to content

Commit 79684a5

Browse files
committed
fix: fix pycodestyle warning
1 parent fc2fa81 commit 79684a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

openedx/core/djangoapps/user_api/management/commands/bulk_user_org_email_optout.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ def handle(self, *args, **options):
137137
raise
138138
cursor.execute('COMMIT;')
139139
log.info("Committed opt-out for rows (%s, %s) through (%s, %s).",
140-
optout_rows[start_idx][0], optout_rows[start_idx][1],
141-
optout_rows[end_idx][0], optout_rows[end_idx][1])
140+
optout_rows[start_idx][0], optout_rows[start_idx][1],
141+
optout_rows[end_idx][0], optout_rows[end_idx][1])
142142
log.info("Sleeping %s seconds...", sleep_between)
143143
time.sleep(sleep_between)
144144
curr_row_idx += chunk_size

0 commit comments

Comments
 (0)