# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 2017-03-16 04:40:00 # Node ID b2fb0fd239b88f0f9ec70c43f30d2f1ef0cb1049 # Parent 43a7dfbead0cbad84ca828c25ec27f9b4eb0e9f2 py3: convert opts back to bytes for status diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -4720,6 +4720,7 @@ def status(ui, repo, *pats, **opts): Returns 0 on success. """ + opts = pycompat.byteskwargs(opts) revs = opts.get('rev') change = opts.get('change')