diff hgext/convert/cvs.py @ 5381:6874368120dc

convert_cvs: add --filemap support
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Thu, 04 Oct 2007 23:21:37 -0300
parents 9400d677efc7
children 003d1f174fe1 f0a3918abd42
line wrap: on
line diff
--- a/hgext/convert/cvs.py	Thu Oct 04 23:21:37 2007 -0300
+++ b/hgext/convert/cvs.py	Thu Oct 04 23:21:37 2007 -0300
@@ -266,3 +266,9 @@
 
     def gettags(self):
         return self.tags
+
+    def getchangedfiles(self, rev, i):
+        files = self.files[rev].keys()
+        files.sort()
+        return files
+