* Makefile.am:

* misc/pycheckerrc:
	* morituri/common/accurip.py:
	* morituri/common/checksum.py:
	* morituri/common/encode.py:
	* morituri/image/table.py:
	* morituri/rip/drive.py:
	  Fix up for pychecker warnings for 2.6
	  Fix rip drive list, which forgot some modules.
This commit is contained in:
Thomas Vander Stichele
2009-06-20 10:57:12 +00:00
parent efdc830893
commit 1643d1ec50
8 changed files with 37 additions and 14 deletions

View File

@@ -138,9 +138,9 @@ class EncodeTask(task.Task):
# get length
self.debug('query duration')
length, format = muxer.query_duration(gst.FORMAT_DEFAULT)
length, qformat = muxer.query_duration(gst.FORMAT_DEFAULT)
# wavparse 0.10.14 returns in bytes
if format == gst.FORMAT_BYTES:
if qformat == gst.FORMAT_BYTES:
self.debug('query returned in BYTES format')
length /= 4
self.debug('total length: %r', length)