From b3888a70172d0af6833ef5685ab5654801b038e9 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sat, 26 Sep 2009 15:07:12 +0000 Subject: [PATCH] finally fix whitespace --- morituri/common/program.py | 2 +- morituri/test/test_common_program.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/morituri/common/program.py b/morituri/common/program.py index c515a09..0ac935a 100644 --- a/morituri/common/program.py +++ b/morituri/common/program.py @@ -477,7 +477,7 @@ class Program(log.Loggable): if trackResult.accurip: status = 'rip accurate ' - c = "(not found) " + c = "(not found) " ar = ", DB [notfound]" if trackResult.ARDBMaxConfidence: c = "(max confidence %3d)" % trackResult.ARDBMaxConfidence diff --git a/morituri/test/test_common_program.py b/morituri/test/test_common_program.py index a9b37c5..b3aa7ca 100644 --- a/morituri/test/test_common_program.py +++ b/morituri/test/test_common_program.py @@ -56,13 +56,13 @@ class TrackImageVerifyTestCase(unittest.TestCase): res = prog.getAccurateRipResults() self.assertEquals(res[1 - 1], - "Track 1: rip NOT accurate (not found) " + "Track 1: rip NOT accurate (not found) " "[620b0797], DB [notfound]") self.assertEquals(res[2 - 1], - "Track 2: rip accurate (max confidence 2) " + "Track 2: rip accurate (max confidence 2) " "[af8c44c5], DB [af8c44c5]") self.assertEquals(res[10 - 1], - "Track 10: rip NOT accurate (max confidence 2) " + "Track 10: rip NOT accurate (max confidence 2) " "[16457a5a], DB [eb6e55b4]") class HTOATestCase(unittest.TestCase):