From 9e2861972732a9d133e3eb7f0d7feb43f3de7ab5 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Fri, 12 Apr 2024 16:33:56 +0000 Subject: [PATCH] zilencer: Fix typo in comment. --- zilencer/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zilencer/views.py b/zilencer/views.py index 17797b7c97..602df1ea23 100644 --- a/zilencer/views.py +++ b/zilencer/views.py @@ -745,7 +745,7 @@ def batch_create_table_data( row_objects: List[ModelT], ) -> None: # We ignore previously-existing data, in case it was truncated and - # re-created on the remote server. `ignore_concflicts=True` + # re-created on the remote server. `ignore_conflicts=True` # cannot return the ids, or count thereof, of the new inserts, # (see https://code.djangoproject.com/ticket/0138) so we rely on # having a lock to accurately count them before and after. This