X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/bc6564ec6e788e07f105003db9da73413ffffa50..8b3b5216a1690aff61e4da42a2523406fd8b21e3:/lib/wlrepo/mercurial_backend/__init__.py?ds=inline diff --git a/lib/wlrepo/mercurial_backend/__init__.py b/lib/wlrepo/mercurial_backend/__init__.py index f0d3d076..6dd3c11b 100644 --- a/lib/wlrepo/mercurial_backend/__init__.py +++ b/lib/wlrepo/mercurial_backend/__init__.py @@ -72,10 +72,8 @@ class MercurialRevision(wlrepo.Revision): a = self._changectx.ancestor(other._changectx) return (a.branch() == self._changectx.branch()) - def has_children(self): - children = self._library._hgrepo.changelog.children(self.hgrev()) - print "C:", children, bool(children) - return bool(children) + def children(self): + return bool(self._library._hgrepo.changelog.children(self.hgrev())) def merge_with(self, other, user, message): lock = self._library.lock(True)