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: