From 7440f7f3b4550f914f05796779c6dad2402aa6ec Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Sat, 24 Sep 2011 23:42:16 +0100 Subject: [PATCH] fix --- server/djrandom/fingerprint/dedup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/djrandom/fingerprint/dedup.py b/server/djrandom/fingerprint/dedup.py index 16fadc9..58e87af 100644 --- a/server/djrandom/fingerprint/dedup.py +++ b/server/djrandom/fingerprint/dedup.py @@ -59,7 +59,7 @@ def dedupe_db(): for track_id, score in results: if track_id == sha1: continue - print ' --> %s (%f)' % track_id, score + print ' --> %s (%f)' % (track_id, score) def run_deduper(db_url): -- GitLab