From 7601c7dc4ccb613ad6c0afdedb2eb9cadf15d6fa Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Fri, 23 Sep 2022 21:13:48 +0100 Subject: [PATCH] Clean up duplicate prompts when importing track --- app/musicmuster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/musicmuster.py b/app/musicmuster.py index d82ae76..c5c9734 100755 --- a/app/musicmuster.py +++ b/app/musicmuster.py @@ -453,9 +453,9 @@ class Window(QMainWindow, Ui_MainWindow): return with Session() as session: - txt = "" new_tracks = [] for fname in dlg.selectedFiles(): + txt = "" tags = helpers.get_tags(fname) new_tracks.append((fname, tags)) title = tags['title']