Fix export_by_extension extra parameter bug

This commit is contained in:
Miguel Jacq 2025-11-04 18:15:27 +11:00
parent 74a75eadcb
commit c5e871294e
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9

View file

@ -627,7 +627,7 @@ If you want an encrypted backup, choose Backup instead of Export.
elif selected_filter.startswith("SQL"): elif selected_filter.startswith("SQL"):
self.db.export_sql(filename) self.db.export_sql(filename)
else: else:
self.db.export_by_extension(entries, filename) self.db.export_by_extension(filename)
QMessageBox.information(self, "Export complete", f"Saved to:\n{filename}") QMessageBox.information(self, "Export complete", f"Saved to:\n{filename}")
except Exception as e: except Exception as e: