From 3c669a4f2946dfc64824f48cc2a2a996abaa6293 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Wed, 19 Oct 2011 18:42:34 +0000 Subject: [PATCH] * morituri/rip/debug.py: Adapt to splitup. --- ChangeLog | 5 +++++ morituri/rip/debug.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5098ba7..40a7661 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-10-19 Thomas Vander Stichele + + * morituri/rip/debug.py: + Adapt to splitup. + 2011-10-19 Thomas Vander Stichele * morituri/rip/debug.py: diff --git a/morituri/rip/debug.py b/morituri/rip/debug.py index dac5972..7206892 100644 --- a/morituri/rip/debug.py +++ b/morituri/rip/debug.py @@ -94,8 +94,8 @@ class MusicBrainz(logcommand.LogCommand): self.stdout.write('Please specify a MusicBrainz disc id.\n') return 3 - from morituri.common import program - metadatas = program.musicbrainz(discId) + from morituri.common import musicbrainz + metadatas = musicbrainz.musicbrainz(discId) self.stdout.write('%d releases\n' % len(metadatas)) for i, md in enumerate(metadatas):