From 6c842eb19e059f3e9fcf3252482fc674a524f5ec Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Tue, 30 Jul 2013 12:34:50 +0200 Subject: [PATCH] add doc; make sure we record with rip debug musicbrainzngs --- morituri/rip/debug.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/morituri/rip/debug.py b/morituri/rip/debug.py index e182109..369be4c 100644 --- a/morituri/rip/debug.py +++ b/morituri/rip/debug.py @@ -214,6 +214,8 @@ class MusicBrainzNGS(logcommand.LogCommand): summary = "examine MusicBrainz NGS info" description = """Look up a MusicBrainz disc id and output information. +You can get the MusicBrainz disc id with rip cd info. + Example disc id: KnpGsLhvH.lPrNc1PBL21lb9Bg4-""" def do(self, args): @@ -224,7 +226,8 @@ Example disc id: KnpGsLhvH.lPrNc1PBL21lb9Bg4-""" return 3 from morituri.common import mbngs - metadatas = mbngs.musicbrainz(discId) + metadatas = mbngs.musicbrainz(discId, + record=self.getRootCommand().record) self.stdout.write('%d releases\n' % len(metadatas)) for i, md in enumerate(metadatas):