From fa14fc7c52701bc0b0bde76bae246ea6443dc6b2 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Sat, 23 Aug 2025 12:18:06 +0100 Subject: [PATCH] Fixup reloading track from Audacity --- app/playlists.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/playlists.py b/app/playlists.py index 4dad5fc..d067b78 100644 --- a/app/playlists.py +++ b/app/playlists.py @@ -855,7 +855,7 @@ class PlaylistTab(QTableView): if not self.musicmuster.ac: return try: - self.ac.musicmuster.export() + self.musicmuster.ac.export() self._rescan(row_number) except ApplicationError as e: show_warning(self.musicmuster, "Audacity error", str(e))