From 24e2bc0b40ea7eae9d47250e2f48510e81392c87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Lalinsk=C3=BD?= Date: Thu, 21 Sep 2006 23:35:02 +0200 Subject: [PATCH] Removed debug output. --- picard/tagger.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/picard/tagger.py b/picard/tagger.py index cc34ac50e..9e45ae58b 100644 --- a/picard/tagger.py +++ b/picard/tagger.py @@ -360,8 +360,6 @@ class Tagger(QtGui.QApplication, ComponentManager, Component): for file in files: # print file for match in file.matches: -# print "- ", match[0], repr(match[1]["album"]) - for match in file.matches: match[0] *= usage[match[1]["musicbrainz_albumid"]] * max_sim # print "+ ", match[0], repr(match[1]["album"]), repr(match[1]["musicbrainz_albumid"]) file.matches.sort(lambda a, b: cmp(a[0], b[0]),reverse=True)