From fdb8279234ab3730d35d2dfc304894c5b14aeb32 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 14 Jul 2013 09:05:58 +0200 Subject: [PATCH] make warning clearer. Fixes #7 --- morituri/rip/cd.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/morituri/rip/cd.py b/morituri/rip/cd.py index 6b639ef..a0a29f7 100644 --- a/morituri/rip/cd.py +++ b/morituri/rip/cd.py @@ -237,7 +237,9 @@ Log files will log the path to tracks relative to this directory. if options.offset is None: options.offset = 0 - self.stdout.write("Using fallback read offset %d\n" % + self.stdout.write("""WARNING: using default offset %d. +Install pycdio and run 'rip offset find' to detect your drive's offset. +""" % options.offset) if self.options.output_directory is None: self.options.output_directory = os.getcwd()