From cce0a5d81fc15641968323f6cc1fbfc804495103 Mon Sep 17 00:00:00 2001 From: Bruno Cauet Date: Tue, 13 Jan 2015 09:12:50 +0100 Subject: [PATCH] ImporterSession.tag_log(): improve docstring --- beets/importer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beets/importer.py b/beets/importer.py index 0800f7b96..e0957e364 100644 --- a/beets/importer.py +++ b/beets/importer.py @@ -234,8 +234,8 @@ class ImportSession(object): self.want_resume = config['resume'].as_choice([True, False, 'ask']) def tag_log(self, status, paths): - """Log a message about a given album to the log file. The status should - reflect the reason the album couldn't be tagged. + """Log a message about a given album to the importer log. The status + should reflect the reason the album couldn't be tagged. """ self.logger.info(u'{0} {1}', status, displayable_path(paths))