* examples/movecue.py:

* examples/readcue.py:
	* morituri/image/cue.py:
	* morituri/image/image.py:
	* morituri/image/toc.py:
	* morituri/program/cdrdao.py:
	* morituri/test/test_image_cue.py:
	* morituri/test/test_image_toc.py:
	  Cue -> CueFile
	  TOC -> TocFile
This commit is contained in:
Thomas Vander Stichele
2009-05-04 16:01:19 +00:00
parent 2dbd307096
commit c17a28d7ae
9 changed files with 25 additions and 12 deletions

View File

@@ -260,7 +260,7 @@ class ReadIndexTableTask(CDRDAOTask):
def done(self):
# FIXME: instead of reading only a TOC, output a complete IndexTable
# by merging the TOC info.
self.toc = toc.TOC(self._toc)
self.toc = toc.TocFile(self._toc)
self.toc.parse()
os.unlink(self._toc)