diff hgext/convert/cvs.py @ 5121:ef338e34a906

convert: look up copies in getchanges instead of getcommit svn: defer path expansion until getchanges to reduce latency, as well as memory usage when converting incrementally.
author Brendan Cully <brendan@kublai.com>
date Sun, 05 Aug 2007 12:03:27 -0700
parents c2d529f288a1
children 7106f4899aa0
line wrap: on
line diff
--- a/hgext/convert/cvs.py	Sun Aug 05 11:30:52 2007 -0700
+++ b/hgext/convert/cvs.py	Sun Aug 05 12:03:27 2007 -0700
@@ -250,7 +250,7 @@
         files = self.files[rev]
         cl = files.items()
         cl.sort()
-        return cl
+        return (cl, {})
 
     def getcommit(self, rev):
         return self.changeset[rev]