##// END OF EJS Templates
py3: use pycompat.ziplist instead of inbuilt zip...
Pulkit Goyal -
r35598:cb0db11f default
parent child Browse files
Show More
@@ -1122,7 +1122,7 b' class basefilectx(object):'
1122 1122 hist[f] = curr
1123 1123 del pcache[f]
1124 1124
1125 return zip(hist[base][0], hist[base][1].splitlines(True))
1125 return pycompat.ziplist(hist[base][0], hist[base][1].splitlines(True))
1126 1126
1127 1127 def ancestors(self, followfirst=False):
1128 1128 visit = {}
General Comments 0
You need to be logged in to leave comments. Login now