Show More
@@ -418,7 +418,7 b' class transaction(util.transactional):' | |||
|
418 | 418 | def readjournal(self): |
|
419 | 419 | self._file.seek(0) |
|
420 | 420 | entries = [] |
|
421 | for l in self._file: | |
|
421 | for l in self._file.readlines(): | |
|
422 | 422 | file, troffset = l.split(b'\0') |
|
423 | 423 | entries.append((file, int(troffset))) |
|
424 | 424 | return entries |
General Comments 0
You need to be logged in to leave comments.
Login now