From c5e871294e2b1ec1d5328118a899bcd2b15aa1ff Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Tue, 4 Nov 2025 18:15:27 +1100 Subject: [PATCH] Fix export_by_extension extra parameter bug --- bouquin/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bouquin/main_window.py b/bouquin/main_window.py index cbcb312..1428384 100644 --- a/bouquin/main_window.py +++ b/bouquin/main_window.py @@ -627,7 +627,7 @@ If you want an encrypted backup, choose Backup instead of Export. elif selected_filter.startswith("SQL"): self.db.export_sql(filename) else: - self.db.export_by_extension(entries, filename) + self.db.export_by_extension(filename) QMessageBox.information(self, "Export complete", f"Saved to:\n{filename}") except Exception as e: