Submitter | phabricator |
---|---|
Date | Jan. 24, 2019, 5:10 p.m. |
Message ID | <71f9508f5df8cca2a273920431eb7965@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/37979/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/uncommit.py b/hgext/uncommit.py --- a/hgext/uncommit.py +++ b/hgext/uncommit.py @@ -25,7 +25,7 @@ cmdutil, commands, context, - copies, + copies as copiesmod, error, node, obsutil, @@ -70,7 +70,7 @@ return ctx.parents()[0].node() # Filter copies - copied = copies.pathcopies(base, ctx) + copied = copiesmod.pathcopies(base, ctx) copied = dict((dst, src) for dst, src in copied.iteritems() if dst in files) def filectxfn(repo, memctx, path, contentctx=ctx, redirect=()):