hgext/convert/cvs.py
changeset 22300 35ab037de989
parent 22296 650b5b6e75ed
child 24395 216fa1ba9993
--- a/hgext/convert/cvs.py	Tue Aug 26 22:03:32 2014 +0200
+++ b/hgext/convert/cvs.py	Tue Aug 26 22:03:32 2014 +0200
@@ -258,7 +258,9 @@
                 else:
                     raise util.Abort(_("unknown CVS response: %s") % line)
 
-    def getchanges(self, rev):
+    def getchanges(self, rev, full):
+        if full:
+            raise util.Abort(_("convert from cvs do not support --full"))
         self._parse()
         return sorted(self.files[rev].iteritems()), {}