8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c12ff4 commit c824bcdCopy full SHA for c824bcd
git/refs/log.py
@@ -84,6 +84,7 @@ def from_line(cls, line):
84
""":return: New RefLogEntry instance from the given revlog line.
85
:param line: line bytes without trailing newline
86
:raise ValueError: If line could not be parsed"""
87
+ line = line.decode(defenc)
88
fields = line.split('\t', 1)
89
if len(fields) == 1:
90
info, msg = fields[0], None
0 commit comments