hgext/convert/subversion.py
changeset 21635 5f2cc464e502
parent 21634 23b24d6a70c8
child 22201 269688a398c4
--- a/hgext/convert/subversion.py	Mon May 19 22:11:14 2014 +0200
+++ b/hgext/convert/subversion.py	Mon May 19 22:12:30 2014 +0200
@@ -1300,6 +1300,11 @@
         self.ui.warn(_('writing Subversion tags is not yet implemented\n'))
         return None, None
 
+    def hascommitfrommap(self, rev):
+        # We trust that revisions referenced in a map still is present
+        # TODO: implement something better if necessary and feasible
+        return True
+
     def hascommitforsplicemap(self, rev):
         # This is not correct as one can convert to an existing subversion
         # repository and childmap would not list all revisions. Too bad.