mercurial/dagutil.py
changeset 34728 09397d0dd3b7
parent 25942 015ded095933
child 35304 f77121b6bf1b
--- a/mercurial/dagutil.py	Sat Oct 14 12:03:42 2017 -0400
+++ b/mercurial/dagutil.py	Sun Oct 15 00:37:24 2017 -0400
@@ -148,7 +148,7 @@
                     if (r is not None
                         and r != nullrev
                         and r not in rl.filteredrevs)]
-        return map(self._internalize, ids)
+        return [self._internalize(i) for i in ids]
 
 
 class revlogdag(revlogbaseddag):