docs and repr fixes

This commit is contained in:
Thomas Vander Stichele
2009-05-04 15:58:12 +00:00
parent bc36bf3aa5
commit 2dbd307096
2 changed files with 2 additions and 2 deletions

View File

@@ -249,7 +249,7 @@ class Index:
self.counter = counter
def __repr__(self):
return '<Index %02d, absolute %d, path %d, relative %d>' % (
return '<Index %02d, absolute %r, path %r, relative %r>' % (
self.number, self.absolute, self.path, self.relative)
class IndexTable:

View File

@@ -73,7 +73,7 @@ class ReadTrackTask(task.Task):
@param path: where to store the ripped track
@type path: str
@param table: table of contents of CD
@type table: L{table.Table}
@type table: L{table.IndexTable}
@param start: first frame to rip
@type start: int
@param stop: last frame to rip (inclusive)