hgext/convert/git.py
changeset 22300 35ab037de989
parent 22296 650b5b6e75ed
child 22413 3cb0318bb2dd
--- a/hgext/convert/git.py	Tue Aug 26 22:03:32 2014 +0200
+++ b/hgext/convert/git.py	Tue Aug 26 22:03:32 2014 +0200
@@ -180,7 +180,9 @@
                 continue
             m.node = node.strip()
 
-    def getchanges(self, version):
+    def getchanges(self, version, full):
+        if full:
+            raise util.Abort(_("convert from git do not support --full"))
         self.modecache = {}
         fh = self.gitopen("git diff-tree -z --root -m -r %s" % version)
         changes = []