* morituri/common/checksum.py:

* morituri/common/encode.py:
	* morituri/image/table.py:
	* morituri/rip/cd.py:
	* morituri/rip/image.py:
	* morituri/rip/offset.py:
	* morituri/test/test_common_accurip.py:
	* morituri/test/test_common_checksum.py:
	* morituri/test/test_image_cue.py:
	* morituri/test/test_image_table.py:
	  Pychecker fixes.
This commit is contained in:
Thomas Vander Stichele
2011-05-21 11:50:39 +00:00
parent 0da5dd0aa1
commit c301015537
11 changed files with 29 additions and 26 deletions

View File

@@ -25,7 +25,7 @@ import os
import shutil
import tempfile
from morituri.common import common, task
from morituri.common import common, task, log
class Profile(object):
name = None
@@ -169,7 +169,7 @@ class EncodeTask(task.Task):
decodebin name=decoder !
audio/x-raw-int,width=16,depth=16,channels=2 !
level name=level !
%s !
%s ! identity name=identity !
filesink location="%s" name=sink''' % (
common.quoteParse(self._inpath).encode('utf-8'),
self._profile.pipeline,
@@ -196,9 +196,10 @@ class EncodeTask(task.Task):
self.debug('paused pipeline')
# get length
identity = self._pipeline.get_by_name('identity')
self.debug('query duration')
try:
length, qformat = tagger.query_duration(gst.FORMAT_DEFAULT)
length, qformat = identity.query_duration(gst.FORMAT_DEFAULT)
except gst.QueryError, e:
self.setException(e)
self.stop()