changeset 793:342b58e45209

git2hg.find_incoming: drop unused 'seen' set
author Siddharth Agarwal <sid0@fb.com>
date Wed, 15 Oct 2014 11:52:25 -0700
parents ad0bad8a0700
children 388944fca782
files hggit/git2hg.py
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hggit/git2hg.py
+++ b/hggit/git2hg.py
@@ -37,7 +37,6 @@
     # traverse the heads getting a list of all the unique commits in
     # topological order
     commits = []
-    seen = set(todo)
     while todo:
         sha = todo[-1]
         if sha in done or sha in git_map: