Mercurial > hg
changeset 50834:57ae6063c494
copy: migrate `opts` to native kwargs
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sun, 20 Aug 2023 01:14:42 -0400 |
parents | de3191c0cec9 |
children | 04a4f10089f1 |
files | mercurial/commands.py |
diffstat | 1 files changed, 3 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Sun Aug 20 01:12:26 2023 -0400 +++ b/mercurial/commands.py Sun Aug 20 01:14:42 2023 -0400 @@ -2496,10 +2496,9 @@ Returns 0 on success, 1 if errors are encountered. """ - opts = pycompat.byteskwargs(opts) context = lambda repo: repo.dirstate.changing_files(repo) - rev = opts.get(b'at_rev') + rev = opts.get('at_rev') ctx = None if rev: ctx = logcmdutil.revsingle(repo, rev) @@ -2508,9 +2507,9 @@ def context(repo): return util.nullcontextmanager() - opts[b'at_rev'] = ctx.rev() + opts['at_rev'] = ctx.rev() with repo.wlock(), context(repo): - return cmdutil.copy(ui, repo, pats, opts) + return cmdutil.copy(ui, repo, pats, pycompat.byteskwargs(opts)) @command(