diff -r cde5827d09a7 -r 550a172a603b hgext/fix.py --- a/hgext/fix.py Wed Mar 13 20:09:56 2019 -0700 +++ b/hgext/fix.py Tue Mar 19 22:58:39 2019 -0700 @@ -601,7 +601,7 @@ if path not in ctx: return None fctx = ctx[path] - copied = fctx.copysource() + copysource = fctx.copysource() return context.memfilectx( repo, memctx, @@ -609,7 +609,7 @@ data=filedata.get(path, fctx.data()), islink=fctx.islink(), isexec=fctx.isexec(), - copied=copied) + copysource=copysource) extra = ctx.extra().copy() extra['fix_source'] = ctx.hex()