From 2a2586f56f288050cf1fc38a295387abe30c0d30 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sat, 23 Nov 2013 15:49:58 -0500 Subject: [PATCH] allow all profiles, including lossy --- morituri/rip/debug.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/morituri/rip/debug.py b/morituri/rip/debug.py index 00c1a12..47aa230 100644 --- a/morituri/rip/debug.py +++ b/morituri/rip/debug.py @@ -147,7 +147,7 @@ class Encode(logcommand.LogCommand): self.parser.add_option('', '--profile', action="store", dest="profile", help="profile for encoding (default '%s', choices '%s')" % ( - default, "', '".join(encode.PROFILES.keys())), + default, "', '".join(encode.ALL_PROFILES.keys())), default=default) def do(self, args): @@ -165,7 +165,7 @@ class Encode(logcommand.LogCommand): runner = task.SyncRunner() from morituri.common import encode - profile = encode.PROFILES[self.options.profile]() + profile = encode.ALL_PROFILES[self.options.profile]() self.debug('Encoding %s to %s', fromPath.encode('utf-8'), toPath.encode('utf-8'))