hgext/convert/p4.py
changeset 22300 35ab037de989
parent 22296 650b5b6e75ed
child 24395 216fa1ba9993
equal deleted inserted replaced
22299:98aafdf4cbf6 22300:35ab037de989
   190         if mode == "l" and contents.endswith("\n"):
   190         if mode == "l" and contents.endswith("\n"):
   191             contents = contents[:-1]
   191             contents = contents[:-1]
   192 
   192 
   193         return contents, mode
   193         return contents, mode
   194 
   194 
   195     def getchanges(self, rev):
   195     def getchanges(self, rev, full):
       
   196         if full:
       
   197             raise util.Abort(_("convert from p4 do not support --full"))
   196         return self.files[rev], {}
   198         return self.files[rev], {}
   197 
   199 
   198     def getcommit(self, rev):
   200     def getcommit(self, rev):
   199         return self.changeset[rev]
   201         return self.changeset[rev]
   200 
   202