* morituri/rip/debug.py:

Add encode debug.
This commit is contained in:
Thomas Vander Stichele
2012-07-12 09:12:13 +00:00
parent 53db632202
commit 6c50b72853
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2012-07-12 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/rip/debug.py:
Add encode debug.
2012-06-24 Thomas Vander Stichele <thomas at apestaart dot org>
* morituri/common/program.py:

View File

@@ -22,7 +22,7 @@
from morituri.common import logcommand
from morituri.extern.task import task
from morituri.common import task
class Checksum(logcommand.LogCommand):
@@ -78,6 +78,9 @@ class Encode(logcommand.LogCommand):
from morituri.common import encode
profile = encode.PROFILES[self.options.profile]()
self.debug('Encoding %s to %s',
fromPath.encode('utf-8'),
toPath.encode('utf-8'))
encodetask = encode.EncodeTask(fromPath, toPath, profile)
runner.run(encodetask)