##// END OF EJS Templates
changelog: fix decoding of extra...
Matt Mackall -
r5791:d09ccdbf default
parent child Browse files
Show More
@@ -121,7 +121,7 b' class changelog(revlog):'
121 extra = {}
121 extra = {}
122 for l in text.split('\0'):
122 for l in text.split('\0'):
123 if l:
123 if l:
124 k, v = text.decode('string_escape').split(':', 1)
124 k, v = l.decode('string_escape').split(':', 1)
125 extra[k] = v
125 extra[k] = v
126 return extra
126 return extra
127
127
General Comments 0
You need to be logged in to leave comments. Login now