hgext/largefiles/overrides.py
changeset 18778 1ef89df2c248
parent 18732 1793251e75c8
child 18784 a12798938721
--- a/hgext/largefiles/overrides.py	Sun Mar 17 23:27:14 2013 -0500
+++ b/hgext/largefiles/overrides.py	Fri Mar 15 11:23:29 2013 -0700
@@ -361,9 +361,10 @@
 # writing the files into the working copy and lfcommands.updatelfiles
 # will update the largefiles.
 def overridemanifestmerge(origfn, repo, p1, p2, pa, branchmerge, force,
-                          partial):
+                          partial, acceptremote=False):
     overwrite = force and not branchmerge
-    actions = origfn(repo, p1, p2, pa, branchmerge, force, partial)
+    actions = origfn(repo, p1, p2, pa, branchmerge, force, partial,
+                     acceptremote)
     processed = []
 
     for action in actions: