Mercurial > hg > mercurial-source
diff mercurial/setdiscovery.py @ 25586:6eb4bdad198f
cleanup: use __builtins__.all instead of util.all
author | Augie Fackler <augie@google.com> |
---|---|
date | Sat, 16 May 2015 14:34:19 -0400 (2015-05-16) |
parents | 0ca8410ea345 |
children | 4d77e89652ad |
line wrap: on
line diff
--- a/mercurial/setdiscovery.py +++ b/mercurial/setdiscovery.py @@ -169,7 +169,7 @@ ui.debug("all remote heads known locally\n") return (srvheadhashes, False, srvheadhashes,) - if sample and len(ownheads) <= initialsamplesize and util.all(yesno): + if sample and len(ownheads) <= initialsamplesize and all(yesno): ui.note(_("all local heads known remotely\n")) ownheadhashes = dag.externalizeall(ownheads) return (ownheadhashes, True, srvheadhashes,)