diff --git a/app/songdb.py b/app/songdb.py index 49b8cb1..c3ace97 100755 --- a/app/songdb.py +++ b/app/songdb.py @@ -77,7 +77,7 @@ def create_track_from_file(session, path, interactive=False): INFO(f" Artist: \"{artist}\"") # Check for duplicate tracks = Tracks.search_titles(session, title) - if tracks: + if interactive and tracks: print("Found the following possible matches:") for track in tracks: print(f'"{track.title}" by {track.artist}')