# HG changeset patch # User Matt Harbison # Date 1692653580 14400 # Node ID a0fcdcc536186811ce1c8f69a324084909a59e28 # Parent 206d7fad2a1c27ccd695343df77fc2867770bd41 debugrebuildfncache: migrate `opts` to native kwargs diff -r 206d7fad2a1c -r a0fcdcc53618 mercurial/debugcommands.py --- a/mercurial/debugcommands.py Mon Aug 21 17:31:53 2023 -0400 +++ b/mercurial/debugcommands.py Mon Aug 21 17:33:00 2023 -0400 @@ -3172,8 +3172,7 @@ ) def debugrebuildfncache(ui, repo, **opts): """rebuild the fncache file""" - opts = pycompat.byteskwargs(opts) - repair.rebuildfncache(ui, repo, opts.get(b"only_data")) + repair.rebuildfncache(ui, repo, opts.get("only_data")) @command(