mercurial/commands.py
changeset 50833 f7cfac1260be
parent 50832 04a4f10089f1
child 50834 07c6a085fad7
--- a/mercurial/commands.py	Sun Aug 20 01:15:15 2023 -0400
+++ b/mercurial/commands.py	Sun Aug 20 01:17:45 2023 -0400
@@ -2973,13 +2973,12 @@
     Returns 0 on success.
     """
 
-    opts = pycompat.byteskwargs(opts)
     if not pats:
         raise error.InputError(_(b'no files specified'))
 
     with repo.wlock(), repo.dirstate.changing_files(repo):
-        m = scmutil.match(repo[None], pats, opts)
-        dryrun, interactive = opts.get(b'dry_run'), opts.get(b'interactive')
+        m = scmutil.match(repo[None], pats, pycompat.byteskwargs(opts))
+        dryrun, interactive = opts.get('dry_run'), opts.get('interactive')
         uipathfn = scmutil.getuipathfn(repo, legacyrelativevalue=True)
         rejected = cmdutil.forget(
             ui,