##// END OF EJS Templates
revlog: use bytes() to ensure text from _chunks is a reasonable type
Augie Fackler -
r31357:c233cbda default
parent child Browse files
Show More
@@ -1277,7 +1277,7 b' class revlog(object):'
1277
1277
1278 bins = self._chunks(chain, df=_df)
1278 bins = self._chunks(chain, df=_df)
1279 if text is None:
1279 if text is None:
1280 text = str(bins[0])
1280 text = bytes(bins[0])
1281 bins = bins[1:]
1281 bins = bins[1:]
1282
1282
1283 text = mdiff.patches(text, bins)
1283 text = mdiff.patches(text, bins)
General Comments 0
You need to be logged in to leave comments. Login now