X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/e3cc953f09c067377e01d1e003927b969997edde..bc6564ec6e788e07f105003db9da73413ffffa50:/lib/wlrepo/mercurial_backend/__init__.py diff --git a/lib/wlrepo/mercurial_backend/__init__.py b/lib/wlrepo/mercurial_backend/__init__.py index 20a39e5d..f0d3d076 100644 --- a/lib/wlrepo/mercurial_backend/__init__.py +++ b/lib/wlrepo/mercurial_backend/__init__.py @@ -73,7 +73,9 @@ class MercurialRevision(wlrepo.Revision): return (a.branch() == self._changectx.branch()) def has_children(self): - return bool( self._library._hgrepo.changelog.children(self.hgrev()) ) + 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)