From patchwork Sun Feb 18 14:17:22 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D2319: py3: use pycompat.byteskwargs() to convert opts keys to bytes From: phabricator X-Patchwork-Id: 28094 Message-Id: To: mercurial-devel@mercurial-scm.org Date: Sun, 18 Feb 2018 14:17:22 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHGd822f3fb6be8: py3: use pycompat.byteskwargs() to convert opts keys to bytes (authored by pulkit, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D2319?vs=5848&id=5864 REVISION DETAIL https://phab.mercurial-scm.org/D2319 AFFECTED FILES hgext/mq.py CHANGE DETAILS To: pulkit, #hg-reviewers Cc: mercurial-devel diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -2267,7 +2267,7 @@ To stop managing a patch and move it into permanent history, use the :hg:`qfinish` command.""" q = repo.mq - q.delete(repo, patches, opts) + q.delete(repo, patches, pycompat.byteskwargs(opts)) q.savedirty() return 0