Show More
@@ -342,7 +342,7 b' class changelog(revlog.revlog):' | |||||
342 | desc = encoding.tolocal(text[last + 2:]) |
|
342 | desc = encoding.tolocal(text[last + 2:]) | |
343 | l = text[:last].split('\n') |
|
343 | l = text[:last].split('\n') | |
344 | manifest = bin(l[0]) |
|
344 | manifest = bin(l[0]) | |
345 | user = l[1] |
|
345 | user = encoding.tolocal(l[1]) | |
346 |
|
346 | |||
347 | tdata = l[2].split(' ', 2) |
|
347 | tdata = l[2].split(' ', 2) | |
348 | if len(tdata) != 3: |
|
348 | if len(tdata) != 3: |
@@ -548,7 +548,7 b' class changectx(basectx):' | |||||
548 | return self._changeset[0] |
|
548 | return self._changeset[0] | |
549 |
|
549 | |||
550 | def user(self): |
|
550 | def user(self): | |
551 |
return |
|
551 | return self._changeset[1] | |
552 | def date(self): |
|
552 | def date(self): | |
553 | return self._changeset[2] |
|
553 | return self._changeset[2] | |
554 | def files(self): |
|
554 | def files(self): |
General Comments 0
You need to be logged in to leave comments.
Login now