Mercurial > hg-stable
changeset 35025:3e549546a6e9
py3: handle keyword arguments in hgext/amend.py
Differential Revision: https://phab.mercurial-scm.org/D1295
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Sun, 22 Oct 2017 23:51:57 +0530 |
parents | d600bda4a3e1 |
children | 38637dd39cfd |
files | hgext/amend.py |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/amend.py Thu Oct 19 23:13:57 2017 +0900 +++ b/hgext/amend.py Sun Oct 22 23:51:57 2017 +0530 @@ -17,6 +17,7 @@ cmdutil, commands, error, + pycompat, registrar, ) @@ -46,10 +47,11 @@ See :hg:`help commit` for more details. """ + opts = pycompat.byteskwargs(opts) if len(opts['note']) > 255: raise error.Abort(_("cannot store a note of more than 255 bytes")) with repo.wlock(), repo.lock(): if not opts.get('logfile'): opts['message'] = opts.get('message') or repo['.'].description() opts['amend'] = True - return commands._docommit(ui, repo, *pats, **opts) + return commands._docommit(ui, repo, *pats, **pycompat.strkwargs(opts))