mercurial/discovery.py
changeset 17827 612db9d7e76a
parent 17826 46e1a4e24225
child 18103 83cb1a1a705d
--- a/mercurial/discovery.py	Fri Oct 19 00:30:11 2012 +0200
+++ b/mercurial/discovery.py	Tue Oct 16 15:49:58 2012 +0200
@@ -298,7 +298,7 @@
                 if nh in repo and repo[nh].phase() <= phases.public:
                     newhs.add(nh)
                 else:
-                    for suc in obsolete.allsuccessors(repo.obsstore, nh):
+                    for suc in obsolete.allsuccessors(repo.obsstore, [nh]):
                         if suc != nh and suc in allfuturecommon:
                             discardedheads.add(nh)
                             break