contrib/synthrepo.py
changeset 21689 503bb3af70fe
parent 20672 05e58b08fdfe
child 22446 054ec0212718
--- a/contrib/synthrepo.py	Thu Aug 15 15:23:36 2013 -0500
+++ b/contrib/synthrepo.py	Thu Aug 15 16:49:27 2013 -0500
@@ -334,7 +334,7 @@
                 for __ in xrange(add):
                     lines.insert(random.randint(0, len(lines)), makeline())
                 path = fctx.path()
-                changes[path] = context.memfilectx(path,
+                changes[path] = context.memfilectx(repo, path,
                                                    '\n'.join(lines) + '\n')
             for __ in xrange(pick(filesremoved)):
                 path = random.choice(mfk)
@@ -354,7 +354,7 @@
             path = '/'.join(filter(None, path))
             data = '\n'.join(makeline()
                              for __ in xrange(pick(linesinfilesadded))) + '\n'
-            changes[path] = context.memfilectx(path, data)
+            changes[path] = context.memfilectx(repo, path, data)
         def filectxfn(repo, memctx, path):
             data = changes[path]
             if data is None: