Fixed unsanited message/user description in document.invoke_and_commit
[redakcja.git] / lib / wlrepo / mercurial_backend / __init__.py
index 20a39e5..6dd3c11 100644 (file)
@@ -72,8 +72,8 @@ class MercurialRevision(wlrepo.Revision):
         a = self._changectx.ancestor(other._changectx)       
         return (a.branch() == self._changectx.branch())
 
-    def has_children(self):
-        return bool( self._library._hgrepo.changelog.children(self.hgrev()) )   
+    def children(self):
+        return bool(self._library._hgrepo.changelog.children(self.hgrev()))
 
     def merge_with(self, other, user, message):
         lock = self._library.lock(True)