From b72fb61808b7a3f8a00a46caa17fec54e57ef807 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Lalinsk=C3=BD?= Date: Sun, 10 Dec 2006 13:31:24 +0100 Subject: [PATCH] Re-enable album loading. --- picard/tagger.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/picard/tagger.py b/picard/tagger.py index b95e70875..1ba2cc92a 100644 --- a/picard/tagger.py +++ b/picard/tagger.py @@ -307,9 +307,9 @@ class Tagger(QtGui.QApplication, ComponentManager, Component): file.error = error file.update() album_id = file.metadata["musicbrainz_albumid"] - #if album_id: - # album = self.load_album(album_id) - # self.move_files_to_album([file], album) + if album_id: + album = self.load_album(album_id) + self.move_files_to_album([file], album) def add_directory(self, directory): """Add all files from the directory ``directory`` to the tagger."""