From: Karl O. Pinc Date: Sun, 17 Jan 2021 01:20:13 +0000 (-0600) Subject: Always use "self" so inheritance works X-Git-Url: https://papio.biology.duke.edu/gitweb/?a=commitdiff_plain;h=e9e6b8cc0b7da54bca6e05cc6936915c7d5b4f0a;p=pgwui_bulk_upload Always use "self" so inheritance works --- 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)