Mercurial > hg
changeset 36281:d822f3fb6be8
py3: use pycompat.byteskwargs() to convert opts keys to bytes
Differential Revision: https://phab.mercurial-scm.org/D2319
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Sun, 18 Feb 2018 17:35:13 +0530 |
parents | 685bcdd236b5 |
children | 3e1139b7d617 |
files | hgext/mq.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/mq.py Sun Feb 18 00:02:33 2018 -0500 +++ b/hgext/mq.py Sun Feb 18 17:35:13 2018 +0530 @@ -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