##// END OF EJS Templates
hg: don't provide annotate linenumber parameter - it has always defaulted to False and was removed in 4.6
Mads Kiilerich -
r7198:cc389e91 default
parent child Browse files
Show More
@@ -296,7 +296,7 b' class MercurialChangeset(BaseChangeset):'
296 Returns a generator of four element tuples with
296 Returns a generator of four element tuples with
297 lineno, sha, changeset lazy loader and line
297 lineno, sha, changeset lazy loader and line
298 """
298 """
299 annotations = self._get_filectx(path).annotate(linenumber=False)
299 annotations = self._get_filectx(path).annotate()
300 if True:
300 if True:
301 try:
301 try:
302 annotation_lines = [(aline.fctx, l) for aline, l in annotations]
302 annotation_lines = [(aline.fctx, l) for aline, l in annotations]
General Comments 0
You need to be logged in to leave comments. Login now