equal
deleted
inserted
replaced
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 |