From e9e6b8cc0b7da54bca6e05cc6936915c7d5b4f0a Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sat, 16 Jan 2021 19:20:13 -0600 Subject: [PATCH] Always use "self" so inheritance works --- src/pgwui_bulk_upload/templates/bulk_upload.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pgwui_bulk_upload/templates/bulk_upload.mak b/src/pgwui_bulk_upload/templates/bulk_upload.mak index 3234194..f6f50ad 100644 --- a/src/pgwui_bulk_upload/templates/bulk_upload.mak +++ b/src/pgwui_bulk_upload/templates/bulk_upload.mak @@ -86,7 +86,7 @@ for error in errors: if isinstance(error, core_ex.UploadError): if error.filepath != last_filepath: - file_errors(f_errors, last_filepath) + self.file_errors(f_errors, last_filepath) last_filepath = error.filepath f_errors = [] f_errors.append(error) -- 2.34.1