mercurial/obsolete.py
changeset 25149 3f0744eeaeaf
parent 25118 e632a2429982
child 25211 22f4ce49044d
--- a/mercurial/obsolete.py	Sat May 16 14:31:03 2015 -0400
+++ b/mercurial/obsolete.py	Sat May 16 14:30:07 2015 -0400
@@ -1117,7 +1117,7 @@
     for rev, ctx in revs:
         # A rev is unstable if one of its parent is obsolete or unstable
         # this works since we traverse following growing rev order
-        if util.any((x.obsolete() or (x.rev() in unstable))
+        if any((x.obsolete() or (x.rev() in unstable))
                 for x in ctx.parents()):
             unstable.add(rev)
     return unstable