# HG changeset patch # User Gregory Szorc # Date 1555864456 25200 # Node ID 90d48c1c62242585849a53539588b0285b5bce9b # Parent fd384911f51bddd8c223e98e99848a8a52d452e2 commands: use byteskwargs() in verify() Otherwise Python 3 complains about the missing key. Differential Revision: https://phab.mercurial-scm.org/D6294 diff -r fd384911f51b -r 90d48c1c6224 mercurial/commands.py --- a/mercurial/commands.py Sun Apr 21 09:29:55 2019 -0700 +++ b/mercurial/commands.py Sun Apr 21 09:34:16 2019 -0700 @@ -6167,6 +6167,8 @@ Returns 0 on success, 1 if errors are encountered. """ + opts = pycompat.byteskwargs(opts) + level = None if opts['full']: level = verifymod.VERIFY_FULL