X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/3546a2b2d5f52224bcf95803030611ab505f29cd..bc6564ec6e788e07f105003db9da73413ffffa50:/lib/wlrepo/mercurial_backend/__init__.py diff --git a/lib/wlrepo/mercurial_backend/__init__.py b/lib/wlrepo/mercurial_backend/__init__.py index 9a22395e..f0d3d076 100644 --- a/lib/wlrepo/mercurial_backend/__init__.py +++ b/lib/wlrepo/mercurial_backend/__init__.py @@ -72,6 +72,11 @@ 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 merge_with(self, other, user, message): lock = self._library.lock(True) try: