From a4b11864530ff9d91d17cf18e10728b792332811 Mon Sep 17 00:00:00 2001 From: Rahul Raturi Date: Tue, 28 Jun 2016 19:56:23 +0530 Subject: [PATCH] More precise (& compact) comment --- picard/ui/searchdialog.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/picard/ui/searchdialog.py b/picard/ui/searchdialog.py index 78a210481..6041f4844 100644 --- a/picard/ui/searchdialog.py +++ b/picard/ui/searchdialog.py @@ -321,9 +321,7 @@ class TrackSearchDialog(SearchDialog): album = self.file_.parent.album self.tagger.move_file_to_track(self.file_, track.release_id, track.track_id) if album._files == 0: - # Remove album if the selected file was the only one in album - # Compared to 0 because file has already moved to another album - # by move_file_to_track + # Remove album if it has no more files associated self.tagger.remove_album(album) else: self.tagger.load_album(track.release_id)