hgext/fastannotate/commands.py
changeset 44470 9d2b2df2c2ba
parent 43554 9f70512ae2cf
child 48130 5105a9975407
--- a/hgext/fastannotate/commands.py	Fri Mar 06 10:52:44 2020 +0100
+++ b/hgext/fastannotate/commands.py	Fri Mar 06 13:27:41 2020 -0500
@@ -233,7 +233,7 @@
                         showlines=(showlines and not showdeleted),
                     )
                     if showdeleted:
-                        existinglines = set((l[0], l[1]) for l in result)
+                        existinglines = {(l[0], l[1]) for l in result}
                         result = a.annotatealllines(
                             rev, showpath=showpath, showlines=showlines
                         )